Changeset 1e4cada in mainline for uspace/lib
- Timestamp:
- 2009-12-09T17:23:15Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 387416b, 8aa42e3
- Parents:
- fb623e2
- Location:
- uspace/lib
- Files:
-
- 3 edited
- 2 moved
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/libblock/libblock.c
rfb623e2 r1e4cada 47 47 #include <as.h> 48 48 #include <assert.h> 49 #include <fibril_sync .h>49 #include <fibril_synch.h> 50 50 #include <adt/list.h> 51 51 #include <adt/hash_table.h> -
uspace/lib/libblock/libblock.h
rfb623e2 r1e4cada 36 36 37 37 #ifndef LIBBLOCK_LIBBLOCK_H_ 38 #define LIBBLOCK_LIBBLOCK_H_38 #define LIBBLOCK_LIBBLOCK_H_ 39 39 40 40 #include <stdint.h> 41 41 #include "../../srv/vfs/vfs.h" 42 #include <fibril_sync .h>42 #include <fibril_synch.h> 43 43 #include <adt/hash_table.h> 44 44 #include <adt/list.h> -
uspace/lib/libc/Makefile.build
rfb623e2 r1e4cada 57 57 generic/string.c \ 58 58 generic/fibril.c \ 59 generic/fibril_sync .c \59 generic/fibril_synch.c \ 60 60 generic/pcb.c \ 61 61 generic/smc.c \ -
uspace/lib/libc/generic/fibril_synch.c
rfb623e2 r1e4cada 33 33 */ 34 34 35 #include <fibril_sync .h>35 #include <fibril_synch.h> 36 36 #include <fibril.h> 37 37 #include <async.h> -
uspace/lib/libc/include/fibril_synch.h
rfb623e2 r1e4cada 33 33 */ 34 34 35 #ifndef LIBC_FIBRIL_SYNC _H_36 #define LIBC_FIBRIL_SYNC _H_35 #ifndef LIBC_FIBRIL_SYNCH_H_ 36 #define LIBC_FIBRIL_SYNCH_H_ 37 37 38 38 #include <async.h>
Note:
See TracChangeset
for help on using the changeset viewer.