Changeset 09ab0a9a in mainline for uspace/lib/posix/include
- Timestamp:
- 2018-09-13T12:05:53Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- cc74cb5
- Parents:
- b2aaaa0
- git-author:
- Jiri Svoboda <jiri@…> (2018-09-13 07:09:46)
- git-committer:
- Jiri Svoboda <jiri@…> (2018-09-13 12:05:53)
- Location:
- uspace/lib/posix/include/posix
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/posix/include/posix/fnmatch.h
rb2aaaa0 r09ab0a9a 58 58 extern int fnmatch(const char *pattern, const char *string, int flags); 59 59 60 61 60 #endif /* POSIX_FNMATCH_H_ */ 62 61 -
uspace/lib/posix/include/posix/locale.h
rb2aaaa0 r09ab0a9a 114 114 extern locale_t uselocale(locale_t newloc); 115 115 116 117 116 #endif /* POSIX_LOCALE_H_ */ 118 117 -
uspace/lib/posix/include/posix/pwd.h
rb2aaaa0 r09ab0a9a 58 58 char *buffer, size_t bufsize, struct passwd **result); 59 59 60 61 60 #endif /* POSIX_PWD_H_ */ 62 61 -
uspace/lib/posix/include/posix/signal.h
rb2aaaa0 r09ab0a9a 52 52 #define SIG_IGN ((void (*)(int)) __posix_ignore_signal_handler) 53 53 54 55 54 typedef struct { 56 55 int si_signo; … … 75 74 void (*sa_sigaction)(int, siginfo_t *, void *); 76 75 }; 77 78 76 79 77 /* Values of sigevent::sigev_notify */ … … 247 245 sigset_t *__restrict__ oset); 248 246 249 250 247 #endif /* POSIX_SIGNAL_H_ */ 251 248 -
uspace/lib/posix/include/posix/strings.h
rb2aaaa0 r09ab0a9a 64 64 extern char *rindex(const char *s, int c); 65 65 66 67 66 #endif // POSIX_STRINGS_H_ 68 67 -
uspace/lib/posix/include/posix/sys/mman.h
rb2aaaa0 r09ab0a9a 60 60 extern int munmap(void *start, size_t length); 61 61 62 63 62 #endif /* POSIX_SYS_MMAN_H_ */ 64 63 -
uspace/lib/posix/include/posix/sys/stat.h
rb2aaaa0 r09ab0a9a 131 131 extern int mkdir(const char *path, mode_t mode); 132 132 133 134 133 #endif /* POSIX_SYS_STAT_H */ 135 134 -
uspace/lib/posix/include/posix/sys/wait.h
rb2aaaa0 r09ab0a9a 55 55 extern pid_t waitpid(pid_t pid, int *stat_ptr, int options); 56 56 57 58 57 #endif /* POSIX_SYS_WAIT_H_ */ 59 58 -
uspace/lib/posix/include/posix/ucontext.h
rb2aaaa0 r09ab0a9a 71 71 } ucontext_t; 72 72 73 74 73 #endif 75 74
Note:
See TracChangeset
for help on using the changeset viewer.