Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 3149 → Rev 3150

/branches/dynload/uspace/lib/libc/include/task.h
40,7 → 40,8
typedef uint64_t task_id_t;
 
extern task_id_t task_get_id(void);
task_id_t task_spawn(const char *path, const char *argv[]);
task_id_t task_spawn_ex(const char *path, const char *argv[]);
extern int task_spawn(void *image, size_t size);
 
#endif