Subversion Repositories HelenOS

Rev

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

Rev 2446 Rev 2447
Line 67... Line 67...
67
    thread_detach(THREAD);
67
    thread_detach(THREAD);
68
   
68
   
69
    uarg.uspace_entry = ((uspace_arg_t *) arg)->uspace_entry;
69
    uarg.uspace_entry = ((uspace_arg_t *) arg)->uspace_entry;
70
    uarg.uspace_stack = ((uspace_arg_t *) arg)->uspace_stack;
70
    uarg.uspace_stack = ((uspace_arg_t *) arg)->uspace_stack;
71
    uarg.uspace_uarg = ((uspace_arg_t *) arg)->uspace_uarg;
71
    uarg.uspace_uarg = ((uspace_arg_t *) arg)->uspace_uarg;
72
    uarg.uspace_thread_function = NULL; uarg.uspace_thread_arg = NULL;
72
    uarg.uspace_thread_function = NULL;
-
 
73
    uarg.uspace_thread_arg = NULL;
73
 
74
 
74
    free((uspace_arg_t *) arg);
75
    free((uspace_arg_t *) arg);
75
    userspace(&uarg);
76
    userspace(&uarg);
76
}
77
}
77
 
78