Changeset 1e4cada in mainline
- Timestamp:
- 2009-12-09T17:23:15Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 387416b, 8aa42e3
- Parents:
- fb623e2
- Location:
- uspace
- Files:
-
- 24 edited
- 2 moved
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/trace/trace.c
rfb623e2 r1e4cada 48 48 #include <io/console.h> 49 49 #include <io/keycode.h> 50 #include <fibril_sync .h>50 #include <fibril_synch.h> 51 51 52 52 #include <libc.h> -
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> -
uspace/srv/bd/ata_bd/ata_bd.c
rfb623e2 r1e4cada 55 55 #include <async.h> 56 56 #include <as.h> 57 #include <fibril_sync .h>57 #include <fibril_synch.h> 58 58 #include <string.h> 59 59 #include <devmap.h> -
uspace/srv/bd/ata_bd/ata_bd.h
rfb623e2 r1e4cada 37 37 38 38 #include <sys/types.h> 39 #include <fibril_sync .h>39 #include <fibril_synch.h> 40 40 #include <string.h> 41 41 42 42 enum { 43 CTL_READ_START 43 CTL_READ_START = 0, 44 44 CTL_WRITE_START = 1, 45 45 }; 46 46 47 47 enum { 48 STATUS_FAILURE 48 STATUS_FAILURE = 0 49 49 }; 50 50 -
uspace/srv/bd/file_bd/file_bd.c
rfb623e2 r1e4cada 45 45 #include <async.h> 46 46 #include <as.h> 47 #include <fibril_sync .h>47 #include <fibril_synch.h> 48 48 #include <devmap.h> 49 49 #include <sys/types.h> -
uspace/srv/bd/gxe_bd/gxe_bd.c
rfb623e2 r1e4cada 43 43 #include <async.h> 44 44 #include <as.h> 45 #include <fibril_sync .h>45 #include <fibril_synch.h> 46 46 #include <devmap.h> 47 47 #include <sys/types.h> -
uspace/srv/bd/rd/rd.c
rfb623e2 r1e4cada 51 51 #include <align.h> 52 52 #include <async.h> 53 #include <fibril_sync .h>53 #include <fibril_synch.h> 54 54 #include <stdio.h> 55 55 #include <devmap.h> -
uspace/srv/clip/clip.c
rfb623e2 r1e4cada 34 34 #include <ipc/clipboard.h> 35 35 #include <malloc.h> 36 #include <fibril_sync .h>36 #include <fibril_synch.h> 37 37 #include <errno.h> 38 38 -
uspace/srv/console/console.c
rfb623e2 r1e4cada 50 50 #include <event.h> 51 51 #include <devmap.h> 52 #include <fibril_sync .h>52 #include <fibril_synch.h> 53 53 54 54 #include "console.h" -
uspace/srv/devmap/devmap.c
rfb623e2 r1e4cada 42 42 #include <errno.h> 43 43 #include <bool.h> 44 #include <fibril_sync .h>44 #include <fibril_synch.h> 45 45 #include <stdlib.h> 46 46 #include <string.h> -
uspace/srv/fs/devfs/devfs_ops.c
rfb623e2 r1e4cada 42 42 #include <string.h> 43 43 #include <libfs.h> 44 #include <fibril_sync .h>44 #include <fibril_synch.h> 45 45 #include <adt/hash_table.h> 46 46 #include <sys/stat.h> -
uspace/srv/fs/fat/fat.h
rfb623e2 r1e4cada 36 36 #include "fat_fat.h" 37 37 #include <ipc/ipc.h> 38 #include <fibril_sync .h>38 #include <fibril_synch.h> 39 39 #include <libfs.h> 40 40 #include <atomic.h> -
uspace/srv/fs/fat/fat_fat.c
rfb623e2 r1e4cada 46 46 #include <align.h> 47 47 #include <assert.h> 48 #include <fibril_sync .h>48 #include <fibril_synch.h> 49 49 #include <mem.h> 50 50 -
uspace/srv/fs/fat/fat_idx.c
rfb623e2 r1e4cada 43 43 #include <adt/list.h> 44 44 #include <assert.h> 45 #include <fibril_sync .h>45 #include <fibril_synch.h> 46 46 47 47 /** Each instance of this type describes one interval of freed VFS indices. */ -
uspace/srv/fs/fat/fat_ops.c
rfb623e2 r1e4cada 52 52 #include <adt/list.h> 53 53 #include <assert.h> 54 #include <fibril_sync .h>54 #include <fibril_synch.h> 55 55 #include <sys/mman.h> 56 56 #include <align.h> -
uspace/srv/part/mbr_part/mbr_part.c
rfb623e2 r1e4cada 61 61 #include <async.h> 62 62 #include <as.h> 63 #include <fibril_sync .h>63 #include <fibril_synch.h> 64 64 #include <devmap.h> 65 65 #include <sys/types.h> -
uspace/srv/vfs/vfs.h
rfb623e2 r1e4cada 36 36 #include <ipc/ipc.h> 37 37 #include <adt/list.h> 38 #include <fibril_sync .h>38 #include <fibril_synch.h> 39 39 #include <sys/types.h> 40 40 #include <devmap.h> -
uspace/srv/vfs/vfs_file.c
rfb623e2 r1e4cada 42 42 #include <bool.h> 43 43 #include <fibril.h> 44 #include <fibril_sync .h>44 #include <fibril_synch.h> 45 45 #include "vfs.h" 46 46 -
uspace/srv/vfs/vfs_lookup.c
rfb623e2 r1e4cada 43 43 #include <stdarg.h> 44 44 #include <bool.h> 45 #include <fibril_sync .h>45 #include <fibril_synch.h> 46 46 #include <adt/list.h> 47 47 #include <vfs/canonify.h> -
uspace/srv/vfs/vfs_node.c
rfb623e2 r1e4cada 39 39 #include <stdlib.h> 40 40 #include <string.h> 41 #include <fibril_sync .h>41 #include <fibril_synch.h> 42 42 #include <adt/hash_table.h> 43 43 #include <assert.h> -
uspace/srv/vfs/vfs_ops.c
rfb623e2 r1e4cada 44 44 #include <string.h> 45 45 #include <bool.h> 46 #include <fibril_sync .h>46 #include <fibril_synch.h> 47 47 #include <adt/list.h> 48 48 #include <unistd.h> -
uspace/srv/vfs/vfs_register.c
rfb623e2 r1e4cada 46 46 #include <ctype.h> 47 47 #include <bool.h> 48 #include <fibril_sync .h>48 #include <fibril_synch.h> 49 49 #include <adt/list.h> 50 50 #include <as.h>
Note:
See TracChangeset
for help on using the changeset viewer.