Changeset 8d2dd7f2 in mainline for uspace/app
- Timestamp:
- 2017-05-13T19:03:14Z (9 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 9c96634
- Parents:
- e48947e
- Location:
- uspace/app
- Files:
-
- 45 edited
-
bdsh/cmds/modules/ls/ls.c (modified) (1 diff)
-
bdsh/cmds/modules/mkdir/mkdir.c (modified) (1 diff)
-
bdsh/cmds/modules/mkfile/mkfile.c (modified) (1 diff)
-
bdsh/cmds/modules/touch/touch.c (modified) (1 diff)
-
bithenge/test.c (modified) (1 diff)
-
blkdump/blkdump.c (modified) (2 diffs)
-
bnchmark/bnchmark.c (modified) (1 diff)
-
dnscfg/dnscfg.c (modified) (1 diff)
-
edit/search.h (modified) (1 diff)
-
getterm/getterm.c (modified) (1 diff)
-
inet/inet.c (modified) (1 diff)
-
loc/loc.c (modified) (1 diff)
-
mkexfat/exfat.h (modified) (1 diff)
-
mkexfat/mkexfat.c (modified) (2 diffs)
-
mkfat/fat.h (modified) (1 diff)
-
mkfat/mkfat.c (modified) (1 diff)
-
netecho/comm.c (modified) (1 diff)
-
netecho/comm.h (modified) (1 diff)
-
netecho/netecho.h (modified) (1 diff)
-
nic/nic.c (modified) (1 diff)
-
nterm/conn.c (modified) (2 diffs)
-
nterm/conn.h (modified) (1 diff)
-
nterm/nterm.h (modified) (1 diff)
-
ping/ping.c (modified) (2 diffs)
-
redir/redir.c (modified) (1 diff)
-
sbi/src/bigint_t.h (modified) (2 diffs)
-
sysinfo/sysinfo.c (modified) (1 diff)
-
sysinst/futil.c (modified) (1 diff)
-
sysinst/futil.h (modified) (1 diff)
-
taskdump/elf_core.c (modified) (1 diff)
-
taskdump/include/symtab.h (modified) (1 diff)
-
taskdump/symtab.c (modified) (1 diff)
-
taskdump/taskdump.c (modified) (1 diff)
-
tester/hw/misc/virtchar1.c (modified) (1 diff)
-
tester/hw/serial/serial1.c (modified) (1 diff)
-
tester/mm/common.h (modified) (1 diff)
-
tester/tester.h (modified) (1 diff)
-
tester/vfs/vfs1.c (modified) (1 diff)
-
testread/testread.c (modified) (1 diff)
-
tetris/screen.h (modified) (1 diff)
-
tetris/tetris.c (modified) (1 diff)
-
trace/trace.c (modified) (2 diffs)
-
trace/trace.h (modified) (1 diff)
-
vuhid/items.h (modified) (1 diff)
-
websrv/websrv.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/bdsh/cmds/modules/ls/ls.c
re48947e r8d2dd7f2 34 34 #include <stdio.h> 35 35 #include <stdlib.h> 36 #include <stdint.h> 36 37 #include <dirent.h> 37 38 #include <getopt.h> 38 #include <sys/types.h>39 39 #include <vfs/vfs.h> 40 40 #include <str.h> -
uspace/app/bdsh/cmds/modules/mkdir/mkdir.c
re48947e r8d2dd7f2 29 29 #include <stdio.h> 30 30 #include <stdlib.h> 31 #include <stdint.h> 31 32 #include <dirent.h> 32 #include <sys/types.h>33 33 #include <getopt.h> 34 34 #include <stdarg.h> -
uspace/app/bdsh/cmds/modules/mkfile/mkfile.c
re48947e r8d2dd7f2 30 30 #include <stdio.h> 31 31 #include <stdlib.h> 32 #include <stdint.h> 32 33 #include <dirent.h> 33 #include <sys/types.h>34 34 #include <macros.h> 35 35 #include <getopt.h> -
uspace/app/bdsh/cmds/modules/touch/touch.c
re48947e r8d2dd7f2 34 34 #include <stdio.h> 35 35 #include <stdlib.h> 36 #include <stdint.h> 36 37 #include <dirent.h> 37 #include <sys/types.h>38 38 #include <str.h> 39 39 #include <getopt.h> -
uspace/app/bithenge/test.c
re48947e r8d2dd7f2 39 39 #include <stdlib.h> 40 40 #include <stddef.h> 41 #include <s ys/types.h>41 #include <stdint.h> 42 42 #include <bithenge/blob.h> 43 43 #include <bithenge/source.h> -
uspace/app/blkdump/blkdump.c
re48947e r8d2dd7f2 40 40 #include <stdio.h> 41 41 #include <stdlib.h> 42 #include <stdint.h> 42 43 #include <block.h> 43 44 #include <mem.h> … … 45 46 #include <byteorder.h> 46 47 #include <scsi/mmc.h> 47 #include <sys/types.h>48 48 #include <sys/typefmt.h> 49 49 #include <inttypes.h> -
uspace/app/bnchmark/bnchmark.c
re48947e r8d2dd7f2 40 40 #include <stdio.h> 41 41 #include <stdlib.h> 42 #include <stdint.h> 42 43 #include <mem.h> 43 44 #include <loc.h> 44 45 #include <byteorder.h> 45 #include <sys/types.h>46 46 #include <sys/typefmt.h> 47 47 #include <inttypes.h> -
uspace/app/dnscfg/dnscfg.c
re48947e r8d2dd7f2 42 42 #include <stdio.h> 43 43 #include <stdlib.h> 44 #include <stdint.h> 44 45 #include <str_error.h> 45 #include <sys/types.h>46 46 47 47 #define NAME "dnscfg" -
uspace/app/edit/search.h
re48947e r8d2dd7f2 38 38 39 39 #include <str.h> 40 #include <sys/types.h> 40 41 41 42 struct search; -
uspace/app/getterm/getterm.c
re48947e r8d2dd7f2 35 35 */ 36 36 37 #include <s ys/types.h>37 #include <stdint.h> 38 38 #include <stdio.h> 39 39 #include <task.h> -
uspace/app/inet/inet.c
re48947e r8d2dd7f2 41 41 #include <stdio.h> 42 42 #include <stdlib.h> 43 #include <stdint.h> 43 44 #include <str_error.h> 44 #include <sys/types.h>45 45 46 46 #define NAME "inet" -
uspace/app/loc/loc.c
re48947e r8d2dd7f2 37 37 #include <stdio.h> 38 38 #include <stdlib.h> 39 #include <stdint.h> 39 40 #include <str.h> 40 #include <sys/types.h>41 41 #include <sys/typefmt.h> 42 42 -
uspace/app/mkexfat/exfat.h
re48947e r8d2dd7f2 32 32 */ 33 33 34 #include <sys/types.h>35 34 #include <stdint.h> 36 35 #include <stdbool.h> -
uspace/app/mkexfat/mkexfat.c
re48947e r8d2dd7f2 38 38 39 39 #include <stdio.h> 40 #include <stdbool.h> 41 #include <stdint.h> 40 42 #include <block.h> 41 43 #include <assert.h> … … 44 46 #include <byteorder.h> 45 47 #include <align.h> 46 #include <sys/types.h>47 48 #include <sys/typefmt.h> 48 #include <stdbool.h>49 49 #include <str.h> 50 50 #include <getopt.h> -
uspace/app/mkfat/fat.h
re48947e r8d2dd7f2 34 34 #define FAT_FAT_H_ 35 35 36 #include <s ys/types.h>36 #include <stdint.h> 37 37 38 38 #define BS_BLOCK 0 -
uspace/app/mkfat/mkfat.c
re48947e r8d2dd7f2 40 40 #include <stdio.h> 41 41 #include <stdlib.h> 42 #include <stdint.h> 42 43 #include <block.h> 43 44 #include <mem.h> 44 45 #include <loc.h> 45 46 #include <byteorder.h> 46 #include <sys/types.h>47 47 #include <sys/typefmt.h> 48 48 #include <inttypes.h> -
uspace/app/netecho/comm.c
re48947e r8d2dd7f2 43 43 #include <stdio.h> 44 44 #include <stdlib.h> 45 #include <stdint.h> 45 46 #include <str_error.h> 46 #include <sys/types.h>47 47 48 48 #include "comm.h" -
uspace/app/netecho/comm.h
re48947e r8d2dd7f2 37 37 #define COMM_H 38 38 39 #include <s ys/types.h>39 #include <stddef.h> 40 40 41 41 extern int comm_open_listen(const char *); -
uspace/app/netecho/netecho.h
re48947e r8d2dd7f2 37 37 #define NETECHO_H 38 38 39 #include <s ys/types.h>39 #include <stddef.h> 40 40 41 41 extern void netecho_received(void *, size_t); -
uspace/app/nic/nic.c
re48947e r8d2dd7f2 39 39 #include <stdio.h> 40 40 #include <stdlib.h> 41 #include <stddef.h> 41 42 #include <str_error.h> 42 #include <sys/types.h>43 43 44 44 #define NAME "nic" -
uspace/app/nterm/conn.c
re48947e r8d2dd7f2 34 34 35 35 #include <byteorder.h> 36 #include <stdbool.h>37 36 #include <errno.h> 38 37 #include <fibril.h> … … 42 41 #include <stdio.h> 43 42 #include <stdlib.h> 43 #include <stdbool.h> 44 #include <stddef.h> 44 45 #include <str_error.h> 45 #include <sys/types.h>46 46 47 47 #include "conn.h" -
uspace/app/nterm/conn.h
re48947e r8d2dd7f2 37 37 #define CONN_H 38 38 39 #include <s ys/types.h>39 #include <stddef.h> 40 40 41 41 extern int conn_open(const char *); -
uspace/app/nterm/nterm.h
re48947e r8d2dd7f2 37 37 #define NTERM_H 38 38 39 #include <s ys/types.h>39 #include <stddef.h> 40 40 41 41 extern void nterm_received(void *, size_t); -
uspace/app/ping/ping.c
re48947e r8d2dd7f2 34 34 35 35 #include <async.h> 36 #include <stdbool.h>37 36 #include <errno.h> 38 37 #include <fibril_synch.h> … … 42 41 #include <io/console.h> 43 42 #include <getopt.h> 43 #include <stdbool.h> 44 44 #include <stdio.h> 45 45 #include <stdlib.h> 46 #include <stddef.h> 47 #include <stdint.h> 46 48 #include <str.h> 47 49 #include <str_error.h> 48 #include <sys/types.h>49 50 50 51 #define NAME "ping" -
uspace/app/redir/redir.c
re48947e r8d2dd7f2 35 35 */ 36 36 37 #include <sys/types.h>38 37 #include <stdlib.h> 39 38 #include <str.h> -
uspace/app/sbi/src/bigint_t.h
re48947e r8d2dd7f2 30 30 #define BIGINT_T_H_ 31 31 32 #include <sys/types.h>33 32 #include <stdint.h> 33 #include <stddef.h> 34 #include <stdbool.h> 34 35 35 36 typedef uint8_t bigint_word_t; … … 47 48 48 49 /** Sign. */ 49 bool _tnegative;50 bool negative; 50 51 51 52 /** Digits starting from the least significant. */ -
uspace/app/sysinfo/sysinfo.c
re48947e r8d2dd7f2 37 37 #include <stdio.h> 38 38 #include <stddef.h> 39 #include <stdint.h> 39 40 #include <sysinfo.h> 40 41 #include <malloc.h> 41 #include <sys/types.h>42 42 43 43 static void dump_bytes_hex(char *data, size_t size) -
uspace/app/sysinst/futil.c
re48947e r8d2dd7f2 38 38 #include <stdio.h> 39 39 #include <stdlib.h> 40 #include <stddef.h> 40 41 #include <vfs/vfs.h> 41 #include <sys/types.h>42 42 #include <dirent.h> 43 43 -
uspace/app/sysinst/futil.h
re48947e r8d2dd7f2 39 39 40 40 #include <ipc/loc.h> 41 #include <s ys/types.h>41 #include <stddef.h> 42 42 43 43 extern int futil_copy_file(const char *, const char *); -
uspace/app/taskdump/elf_core.c
re48947e r8d2dd7f2 52 52 #include <stdio.h> 53 53 #include <stdlib.h> 54 #include <stdint.h> 55 #include <stddef.h> 54 56 #include <errno.h> 55 #include <sys/types.h>56 57 #include <mem.h> 57 #include <stdint.h>58 58 #include <as.h> 59 59 #include <udebug.h> -
uspace/app/taskdump/include/symtab.h
re48947e r8d2dd7f2 37 37 38 38 #include <elf/elf.h> 39 #include <s ys/types.h>39 #include <stddef.h> 40 40 41 41 typedef struct { -
uspace/app/taskdump/symtab.c
re48947e r8d2dd7f2 39 39 #include <stdio.h> 40 40 #include <stdlib.h> 41 #include <stddef.h> 41 42 #include <errno.h> 42 #include <sys/types.h>43 43 #include <vfs/vfs.h> 44 44 -
uspace/app/taskdump/taskdump.c
re48947e r8d2dd7f2 38 38 #include <stdio.h> 39 39 #include <stdlib.h> 40 #include <stddef.h> 41 #include <stdbool.h> 40 42 #include <errno.h> 41 43 #include <udebug.h> 42 44 #include <task.h> 43 45 #include <as.h> 44 #include <sys/types.h>45 46 #include <sys/typefmt.h> 46 47 #include <libarch/istate.h> 47 48 #include <macros.h> 48 49 #include <assert.h> 49 #include <stdbool.h>50 50 51 51 #include <symtab.h> -
uspace/app/tester/hw/misc/virtchar1.c
re48947e r8d2dd7f2 38 38 #include <errno.h> 39 39 #include <str_error.h> 40 #include <s ys/types.h>40 #include <stddef.h> 41 41 #include <async.h> 42 42 #include <char_dev_iface.h> -
uspace/app/tester/hw/serial/serial1.c
re48947e r8d2dd7f2 40 40 #include <stdio.h> 41 41 #include <stddef.h> 42 #include <sys/types.h>43 42 #include <async.h> 44 43 #include <thread.h> -
uspace/app/tester/mm/common.h
re48947e r8d2dd7f2 36 36 #define MM_COMMON_H_ 37 37 38 #include <s ys/types.h>38 #include <stddef.h> 39 39 #include <stdbool.h> 40 40 #include <adt/list.h> -
uspace/app/tester/tester.h
re48947e r8d2dd7f2 36 36 #define TESTER_H_ 37 37 38 #include <sys/types.h>39 38 #include <stdbool.h> 40 39 #include <stacktrace.h> -
uspace/app/tester/vfs/vfs1.c
re48947e r8d2dd7f2 30 30 #include <stdio.h> 31 31 #include <stdlib.h> 32 #include <stddef.h> 32 33 #include <str.h> 33 34 #include <vfs/vfs.h> 34 35 #include <dirent.h> 35 36 #include <loc.h> 36 #include <sys/types.h>37 37 #include "../tester.h" 38 38 -
uspace/app/testread/testread.c
re48947e r8d2dd7f2 49 49 #include <stdio.h> 50 50 #include <stdlib.h> 51 #include <stddef.h> 52 #include <stdint.h> 51 53 #include <mem.h> 52 54 #include <loc.h> 53 55 #include <byteorder.h> 54 #include <sys/types.h>55 56 #include <sys/typefmt.h> 56 57 #include <inttypes.h> -
uspace/app/tetris/screen.h
re48947e r8d2dd7f2 55 55 #define putpad(s) tputs(s, 1, put) 56 56 57 #include < sys/types.h>57 #include <libarch/types.h> 58 58 #include <io/console.h> 59 59 #include <async.h> -
uspace/app/tetris/tetris.c
re48947e r8d2dd7f2 56 56 57 57 #include <sys/time.h> 58 #include <sys/types.h>59 58 #include <err.h> 60 59 #include <errno.h> -
uspace/app/trace/trace.c
re48947e r8d2dd7f2 35 35 #include <stdio.h> 36 36 #include <stdlib.h> 37 #include <stdbool.h> 38 #include <stdint.h> 39 #include <stddef.h> 37 40 #include <fibril.h> 38 41 #include <errno.h> … … 42 45 #include <mem.h> 43 46 #include <str.h> 44 #include <stdbool.h>45 47 #include <loader/loader.h> 46 48 #include <io/console.h> 47 49 #include <io/keycode.h> 48 50 #include <fibril_synch.h> 49 #include <sys/types.h>50 51 #include <sys/typefmt.h> 51 52 #include <vfs/vfs.h> -
uspace/app/trace/trace.h
re48947e r8d2dd7f2 36 36 #define TRACE_H_ 37 37 38 #include < sys/types.h>38 #include <libarch/types.h> 39 39 40 40 /** -
uspace/app/vuhid/items.h
re48947e r8d2dd7f2 36 36 #define VUK_ITEM_H_ 37 37 38 #include <s ys/types.h>38 #include <stdint.h> 39 39 40 40 typedef uint8_t report_descriptor_data_t[]; -
uspace/app/websrv/websrv.c
re48947e r8d2dd7f2 34 34 */ 35 35 36 #include <stdbool.h>37 36 #include <errno.h> 38 37 #include <assert.h> 38 #include <stdbool.h> 39 39 #include <stdio.h> 40 #include <sys/types.h> 40 #include <stdint.h> 41 #include <stddef.h> 41 42 #include <stdlib.h> 42 43 #include <task.h>
Note:
See TracChangeset
for help on using the changeset viewer.
