Changeset 1a552fd in mainline
- Timestamp:
- 2011-06-26T01:23:03Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 4d41821
- Parents:
- 5e628c64
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/posix/signal.h
r5e628c64 r1a552fd 64 64 typedef int posix_sigset_t; 65 65 typedef struct posix_mcontext { 66 // FIXME: should not be empty to avoid compiler warnings (-pedantic) 67 int dummy; 66 68 } posix_mcontext_t; 67 69 … … 75 77 int sigev_signo; /* Signal number. */ 76 78 union posix_sigval sigev_value; /* Signal value. */ 77 void (*sigev_notify_function)(union sigval); /* Notification function. */79 void (*sigev_notify_function)(union posix_sigval); /* Notification function. */ 78 80 posix_thread_attr_t *sigev_notify_attributes; /* Notification attributes. */ 79 81 }; … … 193 195 }; 194 196 197 /* Just declared to avoid compiler warnings. */ 198 extern int posix_sigemptyset(posix_sigset_t *set); 199 extern int posix_sigprocmask(int how, const posix_sigset_t *restrict set, 200 posix_sigset_t *restrict oset); 201 195 202 #ifndef LIBPOSIX_INTERNAL 196 203 #define sig_atomic_t posix_sig_atomic_t … … 203 210 #define stack_t posix_stack_t 204 211 #define siginfo_t posix_siginfo_t 212 #define sigemptyset posix_sigemptyset 213 #define sigprocmask posix_sigprocmask 205 214 #endif 206 215
Note:
See TracChangeset
for help on using the changeset viewer.