Changeset 7907cf9 in mainline for uspace/lib/c
- Timestamp:
- 2010-12-26T11:01:44Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- c1c0184
- Parents:
- 3750c06
- Location:
- uspace/lib/c
- Files:
-
- 1 added
- 1 deleted
- 2 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/Makefile
r3750c06 r7907cf9 87 87 generic/ipc.c \ 88 88 generic/async.c \ 89 generic/async_ rel.c \89 generic/async_sess.c \ 90 90 generic/loader.c \ 91 91 generic/getopt.c \ -
uspace/lib/c/generic/libc.c
r3750c06 r7907cf9 50 50 #include <ipc/ipc.h> 51 51 #include <async.h> 52 #include <async_ rel.h>52 #include <async_sess.h> 53 53 #include <as.h> 54 54 #include <loader/pcb.h> … … 66 66 __heap_init(); 67 67 __async_init(); 68 (void) async_ rel_init();68 (void) async_sess_init(); 69 69 fibril_t *fibril = fibril_setup(); 70 70 __tcb_set(fibril->tcb); -
uspace/lib/c/include/async_sess.h
r3750c06 r7907cf9 33 33 */ 34 34 35 #ifndef LIBC_ASYNC_ REL_H_36 #define LIBC_ASYNC_ REL_H_35 #ifndef LIBC_ASYNC_SESS_H_ 36 #define LIBC_ASYNC_SESS_H_ 37 37 38 extern int async_ rel_init(void);39 extern int async_ relation_create(int);40 extern void async_ relation_destroy(int, int);38 extern int async_sess_init(void); 39 extern int async_transaction_begin(int); 40 extern void async_transaction_end(int, int); 41 41 42 42 #endif
Note:
See TracChangeset
for help on using the changeset viewer.