Changeset 09ab0a9a in mainline for uspace/lib/posix
- 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
- Files:
-
- 15 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 -
uspace/lib/posix/src/fcntl.c
rb2aaaa0 r09ab0a9a 164 164 /** @} 165 165 */ 166 -
uspace/lib/posix/src/fnmatch.c
rb2aaaa0 r09ab0a9a 638 638 { 639 639 int fail = 0; 640 641 640 642 641 static_assert(FNM_PATHNAME == FNM_FILE_NAME); -
uspace/lib/posix/src/pthread/condvar.c
rb2aaaa0 r09ab0a9a 76 76 } 77 77 78 79 78 int pthread_condattr_init(pthread_condattr_t *attr) 80 79 { … … 89 88 } 90 89 91 92 90 /** @} 93 91 */ -
uspace/lib/posix/src/pthread/keys.c
rb2aaaa0 r09ab0a9a 38 38 #include "../internal/common.h" 39 39 40 41 40 void *pthread_getspecific(pthread_key_t key) 42 41 { -
uspace/lib/posix/src/pthread/mutex.c
rb2aaaa0 r09ab0a9a 36 36 #include <errno.h> 37 37 #include "../internal/common.h" 38 39 38 40 39 int pthread_mutex_init(pthread_mutex_t *restrict mutex, … … 94 93 } 95 94 96 97 98 95 /** @} 99 96 */ -
uspace/lib/posix/src/signal.c
rb2aaaa0 r09ab0a9a 332 332 } 333 333 334 335 334 /** 336 335 * Executes an action associated with the given signal.
Note:
See TracChangeset
for help on using the changeset viewer.