Changes in / [1a23f6e:d21e935c] in mainline
- Files:
-
- 8 deleted
- 28 edited
Legend:
- Unmodified
- Added
- Removed
-
HelenOS.config
r1a23f6e rd21e935c 573 573 ! CONFIG_BINUTILS (n/y) 574 574 575 % Build MSIM binary576 ! CONFIG_MSIM (n/y)577 578 575 % Line debugging information 579 576 ! [CONFIG_STRIP_BINARIES!=y] CONFIG_LINE_DEBUG (n/y) -
boot/Makefile.common
r1a23f6e rd21e935c 200 200 endif 201 201 202 ifeq ($(CONFIG_MSIM),y)203 RD_APPS_NON_ESSENTIAL += \204 $(USPACE_PATH)/app/msim/msim205 endif206 207 202 COMPONENTS = \ 208 203 $(KERNEL_PATH)/kernel.bin \ -
uspace/Makefile
r1a23f6e rd21e935c 137 137 endif 138 138 139 ifeq ($(CONFIG_MSIM),y)140 DIRS += \141 app/msim142 endif143 144 139 ## Platform-specific hardware support 145 140 # -
uspace/app/killall/killall.c
r1a23f6e rd21e935c 36 36 #include <errno.h> 37 37 #include <stdio.h> 38 #include <unistd.h>39 38 #include <task.h> 40 39 #include <stats.h> -
uspace/app/nettest1/nettest1.c
r1a23f6e rd21e935c 40 40 #include <malloc.h> 41 41 #include <stdio.h> 42 #include <unistd.h>43 42 #include <str.h> 44 43 #include <task.h> -
uspace/app/nettest2/nettest2.c
r1a23f6e rd21e935c 40 40 #include <malloc.h> 41 41 #include <stdio.h> 42 #include <unistd.h>43 42 #include <str.h> 44 43 #include <task.h> -
uspace/app/sbi/src/mytypes.h
r1a23f6e rd21e935c 51 51 /** Error return codes. */ 52 52 #include <errno.h> 53 /** We need NULL defined. */54 #include <unistd.h>55 53 #define EOK 0 56 54 -
uspace/app/sysinfo/sysinfo.c
r1a23f6e rd21e935c 36 36 #include <errno.h> 37 37 #include <stdio.h> 38 #include <unistd.h>39 38 #include <sysinfo.h> 40 39 #include <malloc.h> -
uspace/app/websrv/websrv.c
r1a23f6e rd21e935c 36 36 #include <bool.h> 37 37 #include <errno.h> 38 #include <assert.h>39 38 #include <stdio.h> 40 39 #include <sys/types.h> -
uspace/drv/bus/usb/ohci/utils/malloc32.h
r1a23f6e rd21e935c 37 37 #include <assert.h> 38 38 #include <malloc.h> 39 #include <unistd.h>40 39 #include <errno.h> 41 40 #include <mem.h> -
uspace/drv/bus/usb/uhci/utils/malloc32.h
r1a23f6e rd21e935c 36 36 37 37 #include <assert.h> 38 #include <unistd.h>39 38 #include <errno.h> 40 39 #include <malloc.h> -
uspace/lib/c/generic/stacktrace.c
r1a23f6e rd21e935c 38 38 #include <sys/types.h> 39 39 #include <errno.h> 40 #include <unistd.h>41 40 42 41 static int stacktrace_read_uintptr(void *arg, uintptr_t addr, uintptr_t *data); -
uspace/lib/c/generic/stats.c
r1a23f6e rd21e935c 40 40 #include <inttypes.h> 41 41 #include <malloc.h> 42 #include <unistd.h>43 42 44 43 #define SYSINFO_STATS_MAX_PATH 64 -
uspace/lib/c/generic/sysinfo.c
r1a23f6e rd21e935c 39 39 #include <malloc.h> 40 40 #include <bool.h> 41 #include <unistd.h>42 41 43 42 /** Get sysinfo keys size -
uspace/lib/c/generic/time.c
r1a23f6e rd21e935c 43 43 #include <ddi.h> 44 44 #include <libc.h> 45 #include <unistd.h>46 45 47 46 /** Pointer to kernel shared variables with time */ -
uspace/lib/c/include/errno.h
r1a23f6e rd21e935c 37 37 38 38 #include <abi/errno.h> 39 #include <fibril.h> 39 40 40 41 #define errno (*(__errno())) -
uspace/lib/c/include/stdarg.h
r1a23f6e rd21e935c 43 43 #define va_arg(ap, type) __builtin_va_arg(ap, type) 44 44 #define va_end(ap) __builtin_va_end(ap) 45 #define va_copy(dst, src) __builtin_va_copy(dst, src)46 45 47 46 #endif -
uspace/lib/c/include/stdio.h
r1a23f6e rd21e935c 39 39 #include <stdarg.h> 40 40 #include <str.h> 41 #include <adt/list.h> 41 42 42 43 #ifndef NVERIFY_PRINTF -
uspace/lib/clui/tinput.h
r1a23f6e rd21e935c 37 37 #define LIBCLUI_TINPUT_H_ 38 38 39 #include <adt/list.h> 40 #include <async.h> 39 41 #include <inttypes.h> 40 42 #include <io/console.h> -
uspace/lib/drv/generic/logbuf.c
r1a23f6e rd21e935c 35 35 #include <ddf/log.h> 36 36 #include <assert.h> 37 #include <unistd.h>38 37 39 38 /** Formatting string for printing number of not-printed items. */ -
uspace/lib/drv/include/ddf/interrupt.h
r1a23f6e rd21e935c 36 36 #define DDF_INTERRUPT_H_ 37 37 38 #include <libarch/common.h>39 #include <libarch/types.h>40 38 #include <abi/ddi/irq.h> 41 39 #include <adt/list.h> -
uspace/lib/posix/Makefile
r1a23f6e rd21e935c 43 43 fcntl.c \ 44 44 fnmatch.c \ 45 getopt.c \46 45 locale.c \ 47 46 math.c \ -
uspace/lib/posix/pwd.c
r1a23f6e rd21e935c 38 38 #include "string.h" 39 39 #include "errno.h" 40 #include "assert.h"41 40 42 41 static bool entry_read = false; -
uspace/lib/posix/stdbool.h
r1a23f6e rd21e935c 37 37 38 38 #ifdef LIBC_BOOL_H_ 39 #if (!defined(POSIX_STDIO_H_)) \ 40 && (!defined(POSIX_STDLIB_H_)) \ 41 && (!defined(POSIX_STRING_H_)) 42 #error "You can't include bool.h and stdbool.h at the same time." 39 #error "You can't include bool.h and stdbool.h at the same time." 43 40 #endif 44 #endif45 46 41 #define LIBC_BOOL_H_ 47 42 -
uspace/lib/posix/time.c
r1a23f6e rd21e935c 45 45 #include "errno.h" 46 46 #include "signal.h" 47 #include "assert.h"48 47 49 48 #include "libc/malloc.h" -
uspace/lib/posix/unistd.c
r1a23f6e rd21e935c 49 49 /* Array of environment variable strings (NAME=VALUE). */ 50 50 char **posix_environ = NULL; 51 char *posix_optarg;52 51 53 52 /** -
uspace/lib/posix/unistd.h
r1a23f6e rd21e935c 43 43 #define _exit exit 44 44 45 extern char *posix_optarg; 45 /* Option Arguments */ 46 extern char *optarg; 46 47 extern int optind, opterr, optopt; 47 48 extern int getopt(int, char * const [], const char *); … … 143 144 144 145 #ifndef LIBPOSIX_INTERNAL 145 #define optarg posix_optarg146 147 146 #define environ posix_environ 148 147 -
uspace/srv/fs/fat/fat_dentry.c
r1a23f6e rd21e935c 43 43 #include <byteorder.h> 44 44 #include <assert.h> 45 #include <unistd.h>46 45 47 46 /** Compare path component with the name read from the dentry.
Note:
See TracChangeset
for help on using the changeset viewer.