Changeset 9b8be79 in mainline for uspace/lib/posix/include
- Timestamp:
- 2018-09-18T14:50:22Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 460ea7e
- Parents:
- 7570a95f
- git-author:
- Jiří Zárevúcky <jiri.zarevucky@…> (2018-09-14 17:49:49)
- git-committer:
- Jiří Zárevúcky <jiri.zarevucky@…> (2018-09-18 14:50:22)
- Location:
- uspace/lib/posix/include
- Files:
-
- 1 added
- 12 deleted
- 21 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/posix/include/posix/ctype.h
r7570a95f r9b8be79 37 37 #define POSIX_CTYPE_H_ 38 38 39 #include "libc/ctype.h"39 #include <libc/ctype.h> 40 40 41 41 /* Obsolete Functions and Macros */ -
uspace/lib/posix/include/posix/dlfcn.h
r7570a95f r9b8be79 34 34 #define POSIX_DLFCN_H_ 35 35 36 #include "libc/dlfcn.h"36 #include <libc/dlfcn.h> 37 37 38 38 #define RTLD_LAZY 1 -
uspace/lib/posix/include/posix/fcntl.h
r7570a95f r9b8be79 36 36 #define POSIX_FCNTL_H_ 37 37 38 #include "sys/types.h"38 #include <sys/types.h> 39 39 40 40 #undef O_CREAT -
uspace/lib/posix/include/posix/getopt.h
r7570a95f r9b8be79 35 35 #define POSIX_GETOPT_H 36 36 37 #include "unistd.h"38 #include "libc/getopt.h"37 #include <unistd.h> 38 #include <libc/getopt.h> 39 39 40 40 #endif -
uspace/lib/posix/include/posix/limits.h
r7570a95f r9b8be79 36 36 #define POSIX_LIMITS_H_ 37 37 38 #include "libc/limits.h"38 #include <libc/limits.h> 39 39 40 40 #undef PATH_MAX -
uspace/lib/posix/include/posix/locale.h
r7570a95f r9b8be79 36 36 #define POSIX_LOCALE_H_ 37 37 38 #include < _bits/NULL.h>38 #include <stddef.h> 39 39 40 40 #ifndef __locale_t_defined -
uspace/lib/posix/include/posix/pthread.h
r7570a95f r9b8be79 33 33 #define POSIX_PTHREAD_H_ 34 34 35 #include "time.h"35 #include <time.h> 36 36 37 37 typedef void *pthread_t; -
uspace/lib/posix/include/posix/pwd.h
r7570a95f r9b8be79 36 36 #define POSIX_PWD_H_ 37 37 38 #include "sys/types.h"38 #include <sys/types.h> 39 39 40 40 struct passwd { -
uspace/lib/posix/include/posix/signal.h
r7570a95f r9b8be79 36 36 #define POSIX_SIGNAL_H_ 37 37 38 #include "sys/types.h"39 #include < posix/ucontext.h>38 #include <sys/types.h> 39 #include <ucontext.h> 40 40 41 41 extern void __posix_default_signal_handler(int signo); -
uspace/lib/posix/include/posix/stdio.h
r7570a95f r9b8be79 37 37 #define POSIX_STDIO_H_ 38 38 39 #include "libc/stdio.h"39 #include <libc/stdio.h> 40 40 41 #include "stddef.h"42 #include "libc/io/verify.h"43 #include "sys/types.h"44 #include "stdarg.h"45 #include "limits.h"41 #include <stddef.h> 42 #include <io/verify.h> 43 #include <sys/types.h> 44 #include <stdarg.h> 45 #include <limits.h> 46 46 47 47 extern FILE *fdopen(int, const char *); -
uspace/lib/posix/include/posix/stdlib.h
r7570a95f r9b8be79 37 37 #define POSIX_STDLIB_H_ 38 38 39 #include "libc/stdlib.h"40 #include "sys/types.h"39 #include <libc/stdlib.h> 40 #include <sys/types.h> 41 41 42 #include < _bits/NULL.h>42 #include <stddef.h> 43 43 44 44 /* Environment Access */ -
uspace/lib/posix/include/posix/string.h
r7570a95f r9b8be79 44 44 */ 45 45 46 #include <_bits/NULL.h> 47 #include <_bits/size_t.h> 46 #include <stddef.h> 48 47 49 #include "libc/mem.h"48 #include <libc/mem.h> 50 49 #ifdef _HELENOS_SOURCE 51 50 #undef _HELENOS_SOURCE 52 #include "libc/string.h"51 #include <libc/string.h> 53 52 #define _HELENOS_SOURCE 54 53 #else 55 #include "libc/string.h"54 #include <libc/string.h> 56 55 #endif 57 56 -
uspace/lib/posix/include/posix/strings.h
r7570a95f r9b8be79 37 37 #define POSIX_STRINGS_H_ 38 38 39 #include "libc/types/common.h"39 #include <types/common.h> 40 40 41 41 /* Search Functions */ -
uspace/lib/posix/include/posix/sys/mman.h
r7570a95f r9b8be79 36 36 #define POSIX_SYS_MMAN_H_ 37 37 38 #include "types.h"38 #include <sys/types.h> 39 39 #include <abi/mm/as.h> 40 40 -
uspace/lib/posix/include/posix/sys/stat.h
r7570a95f r9b8be79 37 37 #define POSIX_SYS_STAT_H_ 38 38 39 #include "types.h"40 #include "../time.h"39 #include <sys/types.h> 40 #include <time.h> 41 41 42 42 /* values are the same as on Linux */ -
uspace/lib/posix/include/posix/sys/time.h
r7570a95f r9b8be79 34 34 #define POSIX_SYS_TIME_H_ 35 35 36 #include "libc/time.h"36 #include <time.h> 37 37 38 38 struct timeval { -
uspace/lib/posix/include/posix/sys/types.h
r7570a95f r9b8be79 37 37 #define POSIX_SYS_TYPES_H_ 38 38 39 #include "libc/offset.h"40 #include "libc/types/common.h"39 #include <offset.h> 40 #include <types/common.h> 41 41 42 42 typedef unsigned int ino_t; -
uspace/lib/posix/include/posix/sys/wait.h
r7570a95f r9b8be79 36 36 #define POSIX_SYS_WAIT_H_ 37 37 38 #include "types.h"38 #include <sys/types.h> 39 39 40 40 #undef WIFEXITED -
uspace/lib/posix/include/posix/time.h
r7570a95f r9b8be79 37 37 #define POSIX_TIME_H_ 38 38 39 #include "sys/types.h" 40 41 #include <_bits/NULL.h> 42 43 #include "libc/time.h" 39 #include <stddef.h> 40 #include <sys/types.h> 41 #include <libc/time.h> 44 42 45 43 #ifndef __locale_t_defined -
uspace/lib/posix/include/posix/ucontext.h
r7570a95f r9b8be79 36 36 #define POSIX_UCONTEXT_H_ 37 37 38 #include "sys/types.h"38 #include <sys/types.h> 39 39 40 40 typedef int sig_atomic_t; -
uspace/lib/posix/include/posix/unistd.h
r7570a95f r9b8be79 37 37 #define POSIX_UNISTD_H_ 38 38 39 #include "sys/types.h"40 #include "stddef.h"39 #include <stddef.h> 40 #include <sys/types.h> 41 41 42 42 #define SEEK_SET 0
Note:
See TracChangeset
for help on using the changeset viewer.