Changeset 70527f1 in mainline for src/proc/task.c


Ignore:
Timestamp:
2005-06-03T14:51:05Z (20 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
673104e
Parents:
ac5d02b
Message:

doxygen-style comments
cleanups

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/proc/task.c

    rac5d02b r70527f1  
    4040link_t tasks_head;
    4141
     42
     43/** Initialize tasks
     44 *
     45 * Initialize kernel tasks support.
     46 *
     47 */
    4248void task_init(void)
    4349{
     
    4753}
    4854
     55
     56/** Create new task
     57 *
     58 * Create new task with no threads.
     59 *
     60 * @param m Task's virtual memory structure.
     61 *
     62 * @return New task's structure on success, NULL on failure.
     63 *
     64 */
    4965task_t *task_create(vm_t *m)
    5066{
Note: See TracChangeset for help on using the changeset viewer.