Subversion Repositories HelenOS

Rev

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

Rev 2712 Rev 2745
Line 242... Line 242...
242
 */
242
 */
243
task_t *task_run_program(void *program_addr, char *name)
243
task_t *task_run_program(void *program_addr, char *name)
244
{
244
{
245
    as_t *as;
245
    as_t *as;
246
    as_area_t *a;
246
    as_area_t *a;
247
    int rc;
247
    unsigned int rc;
248
    thread_t *t;
248
    thread_t *t;
249
    task_t *task;
249
    task_t *task;
250
    uspace_arg_t *kernel_uarg;
250
    uspace_arg_t *kernel_uarg;
251
 
251
 
252
    as = as_create(0);
252
    as = as_create(0);