Changeset c196671 in mainline
- Timestamp:
- 2012-05-18T11:31:26Z (12 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- a54bd98, df3f85f
- Parents:
- 3e67ab1 (diff), 68f57e1 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - Files:
-
- 8 added
- 30 edited
Legend:
- Unmodified
- Added
- Removed
-
HelenOS.config
r3e67ab1 rc196671 573 573 ! CONFIG_BINUTILS (n/y) 574 574 575 % Build MSIM binary 576 ! CONFIG_MSIM (n/y) 577 575 578 % Line debugging information 576 579 ! [CONFIG_STRIP_BINARIES!=y] CONFIG_LINE_DEBUG (n/y) -
boot/Makefile.common
r3e67ab1 rc196671 201 201 endif 202 202 203 ifeq ($(CONFIG_MSIM),y) 204 RD_APPS_NON_ESSENTIAL += \ 205 $(USPACE_PATH)/app/msim/msim 206 endif 207 203 208 COMPONENTS = \ 204 209 $(KERNEL_PATH)/kernel.bin \ -
uspace/Makefile
r3e67ab1 rc196671 138 138 endif 139 139 140 ifeq ($(CONFIG_MSIM),y) 141 DIRS += \ 142 app/msim 143 endif 144 140 145 ## Platform-specific hardware support 141 146 # -
uspace/app/killall/killall.c
r3e67ab1 rc196671 36 36 #include <errno.h> 37 37 #include <stdio.h> 38 #include <unistd.h> 38 39 #include <task.h> 39 40 #include <stats.h> -
uspace/app/nettest1/nettest1.c
r3e67ab1 rc196671 40 40 #include <malloc.h> 41 41 #include <stdio.h> 42 #include <unistd.h> 42 43 #include <str.h> 43 44 #include <task.h> -
uspace/app/nettest2/nettest2.c
r3e67ab1 rc196671 40 40 #include <malloc.h> 41 41 #include <stdio.h> 42 #include <unistd.h> 42 43 #include <str.h> 43 44 #include <task.h> -
uspace/app/sbi/src/mytypes.h
r3e67ab1 rc196671 51 51 /** Error return codes. */ 52 52 #include <errno.h> 53 /** We need NULL defined. */ 54 #include <unistd.h> 53 55 #define EOK 0 54 56 -
uspace/app/sysinfo/sysinfo.c
r3e67ab1 rc196671 36 36 #include <errno.h> 37 37 #include <stdio.h> 38 #include <unistd.h> 38 39 #include <sysinfo.h> 39 40 #include <malloc.h> -
uspace/app/websrv/websrv.c
r3e67ab1 rc196671 36 36 #include <bool.h> 37 37 #include <errno.h> 38 #include <assert.h> 38 39 #include <stdio.h> 39 40 #include <sys/types.h> -
uspace/drv/bus/usb/ohci/utils/malloc32.h
r3e67ab1 rc196671 37 37 #include <assert.h> 38 38 #include <malloc.h> 39 #include <unistd.h> 39 40 #include <errno.h> 40 41 #include <mem.h> -
uspace/drv/bus/usb/uhci/utils/malloc32.h
r3e67ab1 rc196671 36 36 37 37 #include <assert.h> 38 #include <unistd.h> 38 39 #include <errno.h> 39 40 #include <malloc.h> -
uspace/lib/c/generic/stacktrace.c
r3e67ab1 rc196671 38 38 #include <sys/types.h> 39 39 #include <errno.h> 40 #include <unistd.h> 40 41 41 42 static int stacktrace_read_uintptr(void *arg, uintptr_t addr, uintptr_t *data); -
uspace/lib/c/generic/stats.c
r3e67ab1 rc196671 40 40 #include <inttypes.h> 41 41 #include <malloc.h> 42 #include <unistd.h> 42 43 43 44 #define SYSINFO_STATS_MAX_PATH 64 -
uspace/lib/c/generic/sysinfo.c
r3e67ab1 rc196671 39 39 #include <malloc.h> 40 40 #include <bool.h> 41 #include <unistd.h> 41 42 42 43 /** Get sysinfo keys size -
uspace/lib/c/generic/time.c
r3e67ab1 rc196671 43 43 #include <ddi.h> 44 44 #include <libc.h> 45 #include <unistd.h> 45 46 46 47 /** Pointer to kernel shared variables with time */ -
uspace/lib/c/include/errno.h
r3e67ab1 rc196671 37 37 38 38 #include <abi/errno.h> 39 #include <fibril.h>40 39 41 40 #define errno (*(__errno())) -
uspace/lib/c/include/stdarg.h
r3e67ab1 rc196671 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) 45 46 46 47 #endif -
uspace/lib/c/include/stdio.h
r3e67ab1 rc196671 39 39 #include <stdarg.h> 40 40 #include <str.h> 41 #include <adt/list.h>42 41 43 42 #ifndef NVERIFY_PRINTF -
uspace/lib/clui/tinput.h
r3e67ab1 rc196671 37 37 #define LIBCLUI_TINPUT_H_ 38 38 39 #include <adt/list.h>40 #include <async.h>41 39 #include <inttypes.h> 42 40 #include <io/console.h> -
uspace/lib/drv/generic/logbuf.c
r3e67ab1 rc196671 35 35 #include <ddf/log.h> 36 36 #include <assert.h> 37 #include <unistd.h> 37 38 38 39 /** Formatting string for printing number of not-printed items. */ -
uspace/lib/drv/include/ddf/interrupt.h
r3e67ab1 rc196671 36 36 #define DDF_INTERRUPT_H_ 37 37 38 #include <libarch/common.h> 39 #include <libarch/types.h> 38 40 #include <abi/ddi/irq.h> 39 41 #include <adt/list.h> -
uspace/lib/posix/Makefile
r3e67ab1 rc196671 43 43 fcntl.c \ 44 44 fnmatch.c \ 45 getopt.c \ 45 46 locale.c \ 46 47 math.c \ -
uspace/lib/posix/errno.h
r3e67ab1 rc196671 66 66 #undef errno 67 67 #define errno (*__posix_errno()) 68 69 #include "unistd.h" 68 70 69 71 extern int *__posix_errno(void); -
uspace/lib/posix/pwd.c
r3e67ab1 rc196671 38 38 #include "string.h" 39 39 #include "errno.h" 40 #include "assert.h" 40 41 41 42 static bool entry_read = false; -
uspace/lib/posix/stdbool.h
r3e67ab1 rc196671 37 37 38 38 #ifdef LIBC_BOOL_H_ 39 #error "You can't include bool.h and stdbool.h at the same time." 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." 40 43 #endif 44 #endif 45 41 46 #define LIBC_BOOL_H_ 42 47 -
uspace/lib/posix/stdio.h
r3e67ab1 rc196671 37 37 #define POSIX_STDIO_H_ 38 38 39 #include "stddef.h" 40 #include "unistd.h" 39 41 #include "libc/stdio.h" 40 42 #include "sys/types.h" -
uspace/lib/posix/time.c
r3e67ab1 rc196671 45 45 #include "errno.h" 46 46 #include "signal.h" 47 #include "assert.h" 47 48 48 49 #include "libc/malloc.h" -
uspace/lib/posix/unistd.c
r3e67ab1 rc196671 49 49 /* Array of environment variable strings (NAME=VALUE). */ 50 50 char **posix_environ = NULL; 51 char *posix_optarg; 51 52 52 53 /** -
uspace/lib/posix/unistd.h
r3e67ab1 rc196671 43 43 #define _exit exit 44 44 45 /* Option Arguments */ 46 extern char *optarg; 45 extern char *posix_optarg; 47 46 extern int optind, opterr, optopt; 48 extern int getopt(int, char * const [], const char *);47 extern int posix_getopt(int, char * const [], const char *); 49 48 50 49 /* Environment */ … … 144 143 145 144 #ifndef LIBPOSIX_INTERNAL 145 #define getopt posix_getopt 146 #define optarg posix_optarg 147 146 148 #define environ posix_environ 147 149 -
uspace/srv/fs/fat/fat_dentry.c
r3e67ab1 rc196671 43 43 #include <byteorder.h> 44 44 #include <assert.h> 45 #include <unistd.h> 45 46 46 47 /** Compare path component with the name read from the dentry.
Note:
See TracChangeset
for help on using the changeset viewer.