Changeset 7354b5e in mainline
- Timestamp:
- 2017-06-10T10:06:39Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 63e27ef
- Parents:
- e299dbe
- Location:
- uspace
- Files:
-
- 1 deleted
- 18 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/blkdump/blkdump.c
re299dbe r7354b5e 46 46 #include <byteorder.h> 47 47 #include <scsi/mmc.h> 48 #include < sys/typefmt.h>48 #include <offset.h> 49 49 #include <inttypes.h> 50 50 #include <errno.h> -
uspace/app/bnchmark/bnchmark.c
re299dbe r7354b5e 44 44 #include <loc.h> 45 45 #include <byteorder.h> 46 #include <sys/typefmt.h>47 46 #include <inttypes.h> 48 47 #include <errno.h> -
uspace/app/devctl/devctl.c
re299dbe r7354b5e 39 39 #include <stdlib.h> 40 40 #include <str_error.h> 41 #include <sys/typefmt.h>42 41 43 42 #define NAME "devctl" -
uspace/app/loc/loc.c
re299dbe r7354b5e 38 38 #include <stdlib.h> 39 39 #include <stdint.h> 40 #include <inttypes.h> 40 41 #include <str.h> 41 #include <sys/typefmt.h>42 42 43 43 #define NAME "loc" -
uspace/app/mkexfat/mkexfat.c
re299dbe r7354b5e 46 46 #include <byteorder.h> 47 47 #include <align.h> 48 #include <sys/typefmt.h>49 48 #include <str.h> 50 49 #include <getopt.h> -
uspace/app/mkfat/mkfat.c
re299dbe r7354b5e 45 45 #include <loc.h> 46 46 #include <byteorder.h> 47 #include <sys/typefmt.h>48 47 #include <inttypes.h> 49 48 #include <errno.h> -
uspace/app/mkmfs/mkmfs.c
re299dbe r7354b5e 41 41 #include <block.h> 42 42 #include <errno.h> 43 #include <sys/typefmt.h>44 43 #include <inttypes.h> 45 44 #include <getopt.h> -
uspace/app/taskdump/taskdump.c
re299dbe r7354b5e 44 44 #include <task.h> 45 45 #include <as.h> 46 #include <sys/typefmt.h>47 46 #include <libarch/istate.h> 48 47 #include <macros.h> -
uspace/app/testread/testread.c
re299dbe r7354b5e 54 54 #include <loc.h> 55 55 #include <byteorder.h> 56 #include <sys/typefmt.h>57 56 #include <inttypes.h> 58 57 #include <errno.h> -
uspace/app/trace/ipcp.c
re299dbe r7354b5e 35 35 #include <stdio.h> 36 36 #include <stdlib.h> 37 #include <inttypes.h> 37 38 #include <adt/hash_table.h> 38 #include <sys/typefmt.h>39 39 #include <abi/ipc/methods.h> 40 40 #include <macros.h> -
uspace/app/trace/trace.c
re299dbe r7354b5e 38 38 #include <stdint.h> 39 39 #include <stddef.h> 40 #include <inttypes.h> 40 41 #include <fibril.h> 41 42 #include <errno.h> … … 49 50 #include <io/keycode.h> 50 51 #include <fibril_synch.h> 51 #include <sys/typefmt.h>52 52 #include <vfs/vfs.h> 53 53 -
uspace/lib/block/block.c
re299dbe r7354b5e 51 51 #include <malloc.h> 52 52 #include <stdio.h> 53 #include <sys/typefmt.h>54 53 #include <stacktrace.h> 54 #include <offset.h> 55 #include <inttypes.h> 55 56 #include "block.h" 56 57 -
uspace/lib/c/include/offset.h
re299dbe r7354b5e 36 36 #define LIBC_OFFSET_H_ 37 37 38 #include <libarch/types.h>39 38 #include <stdint.h> 40 39 … … 47 46 #define AOFF64_MAX UINT64_MAX 48 47 48 /* off64_t, aoff64_t */ 49 #define PRIdOFF64 PRId64 50 #define PRIuOFF64 PRIu64 51 #define PRIxOFF64 PRIx64 52 #define PRIXOFF64 PRIX64 49 53 50 54 /** Relative offset */ -
uspace/lib/posix/include/posix/sys/types.h
re299dbe r7354b5e 44 44 #include "libc/sys/time.h" 45 45 46 #include <libarch/types.h> 47 46 48 typedef unsigned int __POSIX_DEF__(ino_t); 47 49 typedef unsigned int __POSIX_DEF__(nlink_t); -
uspace/srv/bd/file_bd/file_bd.c
re299dbe r7354b5e 47 47 #include <stddef.h> 48 48 #include <stdint.h> 49 #include <sys/typefmt.h>50 49 #include <errno.h> 51 50 #include <stdbool.h> -
uspace/srv/hid/input/ctl/kbdev.c
re299dbe r7354b5e 45 45 #include <stdlib.h> 46 46 #include <vfs/vfs_sess.h> 47 #include <sys/typefmt.h>48 47 #include "../gsp.h" 49 48 #include "../input.h" -
uspace/srv/hid/input/proto/mousedev.c
re299dbe r7354b5e 43 43 #include <ipc/mouseev.h> 44 44 #include <loc.h> 45 #include <sys/typefmt.h>46 45 #include "../mouse.h" 47 46 #include "../mouse_port.h" -
uspace/srv/taskmon/taskmon.c
re299dbe r7354b5e 38 38 #include <async.h> 39 39 #include <ipc/services.h> 40 #include <sys/typefmt.h>41 40 #include <task.h> 42 41 #include <ipc/corecfg.h>
Note:
See TracChangeset
for help on using the changeset viewer.