Ignore:
File:
1 edited

Legend:

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

    rbcaca55 rd99c1d2  
    3333/**
    3434 * @file
    35  * @brief Userspace bootstrap thread.
     35 * @brief       Userspace bootstrap thread.
    3636 *
    3737 * This file contains uinit kernel thread wich is used to start every
     
    4040 * @see SYS_THREAD_CREATE
    4141 */
    42 
     42 
    4343#include <main/uinit.h>
    4444#include <typedefs.h>
     
    4848#include <arch.h>
    4949#include <udebug/udebug.h>
     50
    5051
    5152/** Thread used to bring up userspace thread.
     
    5758{
    5859        uspace_arg_t uarg;
    59        
     60
    6061        /*
    6162         * So far, we don't have a use for joining userspace threads so we
     
    6768         */
    6869        thread_detach(THREAD);
    69        
     70
    7071#ifdef CONFIG_UDEBUG
    7172        udebug_stoppable_end();
     
    7778        uarg.uspace_thread_function = NULL;
    7879        uarg.uspace_thread_arg = NULL;
    79        
     80
    8081        free((uspace_arg_t *) arg);
    8182       
Note: See TracChangeset for help on using the changeset viewer.