/[rtmk]/rtmk/task.c
ViewVC logotype

Diff of /rtmk/task.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.1.1.1 by jrydberg, Fri Dec 7 02:05:47 2001 UTC revision 1.2 by jrydberg, Mon Dec 10 20:51:04 2001 UTC
# Line 23  Foundation, Inc., 59 Temple Place - Suit Line 23  Foundation, Inc., 59 Temple Place - Suit
23  #include "task.h"  #include "task.h"
24  #include "vm-slab.h"  #include "vm-slab.h"
25  #include "trace.h"  #include "trace.h"
26    #include "ipc-object.h"
27    
28  /* Task for kernel threads.  */  /* Task for kernel threads.  */
29  struct task *task_kernel;  struct task *task_kernel;
# Line 59  task_create (struct task *parent_task, b Line 60  task_create (struct task *parent_task, b
60    assert (new_task->map);    assert (new_task->map);
61    queue_init (&new_task->thread_list);    queue_init (&new_task->thread_list);
62    
63      /* ??? forking IPC object?  */
64      new_task->ipc_object = ipc_object_create ();
65    
66    *child_taskp = new_task;    *child_taskp = new_task;
67    return KERN_SUCCESS;    return KERN_SUCCESS;
68  }  }

Legend:
Removed from v.1.1.1.1  
changed lines
  Added in v.1.2

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26