Rev 3343 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 3343 | Rev 3492 | ||
---|---|---|---|
Line 30... | Line 30... | ||
30 | * @{ |
30 | * @{ |
31 | */ |
31 | */ |
32 | /** @file |
32 | /** @file |
33 | */ |
33 | */ |
34 | 34 | ||
35 | #ifndef LIBC_LOADER_H_ |
35 | #ifndef LIBC_IPC_LOADER_H_ |
36 | #define LIBC_LOADER_H_ |
36 | #define LIBC_IPC_LOADER_H_ |
37 | 37 | ||
38 | #include <ipc/ipc.h> |
38 | #include <ipc/ipc.h> |
39 | 39 | ||
40 | typedef enum { |
40 | typedef enum { |
41 | LOADER_HELLO = IPC_FIRST_USER_METHOD, |
41 | LOADER_HELLO = IPC_FIRST_USER_METHOD, |
- | 42 | LOADER_GET_TASKID, |
|
42 | LOADER_SET_PATHNAME, |
43 | LOADER_SET_PATHNAME, |
43 | LOADER_SET_ARGS, |
44 | LOADER_SET_ARGS, |
- | 45 | LOADER_LOAD, |
|
44 | LOADER_RUN |
46 | LOADER_RUN |
45 | } fb_request_t; |
47 | } fb_request_t; |
46 | 48 | ||
47 | #endif |
49 | #endif |
48 | 50 |