Subversion Repositories HelenOS-historic

Rev

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

Rev 1409 Rev 1424
Line 151... Line 151...
151
    ASSERT(task);
151
    ASSERT(task);
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 | AS_AREA_CACHEABLE,
-
 
157
        LOADED_PROG_STACK_PAGES_NO*PAGE_SIZE,
157
        USTACK_ADDRESS, AS_AREA_ATTR_NONE, &anon_backend, NULL);
158
        USTACK_ADDRESS, AS_AREA_ATTR_NONE, &anon_backend, NULL);
158
 
159
 
159
    t = thread_create(uinit, kernel_uarg, task, 0, "uinit");
160
    t = thread_create(uinit, kernel_uarg, task, 0, "uinit");
160
    ASSERT(t);
161
    ASSERT(t);
161
    thread_ready(t);
162
    thread_ready(t);