Subversion Repositories HelenOS-historic

Rev

Rev 1358 | Rev 1424 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1358 Rev 1409
Line 152... Line 152...
152
 
152
 
153
    /*
153
    /*
154
     * Create the data as_area.
154
     * Create the data as_area.
155
     */
155
     */
156
    a = as_area_create(as, AS_AREA_READ | AS_AREA_WRITE, LOADED_PROG_STACK_PAGES_NO*PAGE_SIZE,
156
    a = as_area_create(as, AS_AREA_READ | AS_AREA_WRITE, LOADED_PROG_STACK_PAGES_NO*PAGE_SIZE,
157
        USTACK_ADDRESS, AS_AREA_ATTR_NONE);
157
        USTACK_ADDRESS, AS_AREA_ATTR_NONE, &anon_backend, NULL);
158
 
158
 
159
    t = thread_create(uinit, kernel_uarg, task, 0, "uinit");
159
    t = thread_create(uinit, kernel_uarg, task, 0, "uinit");
160
    ASSERT(t);
160
    ASSERT(t);
161
    thread_ready(t);
161
    thread_ready(t);
162
   
162