Changeset 19b28b0 in mainline for uspace/lib/libc/include
- Timestamp:
- 2009-03-02T17:31:05Z (17 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 8026731
- Parents:
- 97c9da8
- Location:
- uspace/lib/libc/include
- Files:
-
- 5 edited
-
async.h (modified) (2 diffs)
-
io/stream.h (modified) (1 diff)
-
ipc/ipc.h (modified) (1 diff)
-
ipc/services.h (modified) (1 diff)
-
vfs/vfs.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/libc/include/async.h
r97c9da8 r19b28b0 77 77 async_send_slow((phoneid), (method), (arg1), (arg2), (arg3), (arg4), \ 78 78 (arg5), (dataptr)) 79 79 80 80 extern aid_t async_send_fast(int phoneid, ipcarg_t method, ipcarg_t arg1, 81 81 ipcarg_t arg2, ipcarg_t arg3, ipcarg_t arg4, ipc_call_t *dataptr); … … 87 87 suseconds_t timeout); 88 88 89 fid_t async_new_connection(ipcarg_t in_phone_hash, ipc_callid_t callid,90 ipc_call_t *call, void (*cthread)(ipc_callid_t, ipc_call_t *));89 fid_t async_new_connection(ipcarg_t in_phone_hash, ipc_callid_t callid, 90 ipc_call_t *call, void (*cthread)(ipc_callid_t, ipc_call_t *)); 91 91 void async_usleep(suseconds_t timeout); 92 92 void async_create_manager(void); -
uspace/lib/libc/include/io/stream.h
r97c9da8 r19b28b0 48 48 extern ssize_t write_stderr(const void *, size_t); 49 49 50 extern int get_cons_phone(void); 50 extern int get_console_phone(void); 51 extern void console_wait(void); 51 52 52 53 #endif -
uspace/lib/libc/include/ipc/ipc.h
r97c9da8 r19b28b0 247 247 ipcarg_t, ipcarg_t, void *, ipc_async_callback_t, int); 248 248 249 #define IPC_FLAG_BLOCKING 0x01 250 249 251 extern int ipc_connect_to_me(int, int, int, int, ipcarg_t *); 250 252 extern int ipc_connect_me_to(int, int, int, int); 253 extern int ipc_connect_me_to_blocking(int, int, int, int); 251 254 extern int ipc_hangup(int); 252 255 extern int ipc_register_irq(int, int, int, irq_code_t *); -
uspace/lib/libc/include/ipc/services.h
r97c9da8 r19b28b0 31 31 */ 32 32 /** 33 * @file services.h34 * @brief List of all known services and their codes.33 * @file services.h 34 * @brief List of all known services and their codes. 35 35 */ 36 36 -
uspace/lib/libc/include/vfs/vfs.h
r97c9da8 r19b28b0 40 40 extern char *absolutize(const char *, size_t *); 41 41 42 extern int mount(const char *, const char *, const char *); 42 extern int mount(const char *, const char *, const char *, 43 const unsigned int flags); 43 44 44 45 #endif
Note:
See TracChangeset
for help on using the changeset viewer.
