Changeset 1e9d0e3 in mainline for kernel/generic/src/main/kinit.c


Ignore:
Timestamp:
2008-06-21T10:57:51Z (16 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
1a48bcd
Parents:
46c1234
Message:

cstyle for kinit.c and scheduler.c

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/src/main/kinit.c

    r46c1234 r1e9d0e3  
    147147         * Create kernel console.
    148148         */
    149         t = thread_create(kconsole, (void *) "kconsole", TASK, 0, "kconsole", false);
     149        t = thread_create(kconsole, (void *) "kconsole", TASK, 0, "kconsole",
     150            false);
    150151        if (t)
    151152                thread_ready(t);
     
    167168                }
    168169
    169                 threads[i] = thread_create_program(
    170                         (void *) init.tasks[i].addr, "uspace");
     170                threads[i] = thread_create_program((void *) init.tasks[i].addr,
     171                    "uspace");
    171172               
    172173                if (threads[i] != NULL) {
     
    184185                       
    185186                        if (rd != RE_OK)
    186                                 printf("Init binary %" PRIc " not used, error code %d.\n", i, rd);
     187                                printf("Init binary %" PRIc " not used, error "
     188                                    "code %d.\n", i, rd);
    187189                }
    188190        }
Note: See TracChangeset for help on using the changeset viewer.