Changeset bfd1546 in mainline for uspace/lib/libc/generic/task.c


Ignore:
Timestamp:
2009-02-15T00:01:06Z (15 years ago)
Author:
Jiri Svoboda <jirik.svoboda@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
08b777e
Parents:
4cac212c
Message:

More elegant way of invoking the loader - as a 'cloneable' service. Task names functionality lost for the time being.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/libc/generic/task.c

    r4cac212c rbfd1546  
    6464        int rc;
    6565
    66         /* Spawn a program loader. */   
    67         ldr = loader_spawn(path);
     66        /* Connect to a program loader. */
     67        ldr = loader_connect();
    6868        if (ldr == NULL)
    6969                return 0;
     
    9090
    9191        /* Run it. */
    92         /* Load the program. */
    9392        rc = loader_run(ldr);
    9493        if (rc != EOK)
Note: See TracChangeset for help on using the changeset viewer.