Home
last modified time | relevance | path

Searched defs:sigevent (Results 1 – 9 of 9) sorted by relevance

/third_party/ltp/testcases/open_posix_testsuite/conformance/definitions/aio_h/
D2-1.c18 struct sigevent sigevent; in main() local
/third_party/musl/include/
Dsignal.h179 struct sigevent { struct
180 union sigval sigev_value;
181 int sigev_signo;
182 int sigev_notify;
183 void (*sigev_notify_function)(union sigval);
184 pthread_attr_t *sigev_notify_attributes;
185 char __pad[56-3*sizeof(long)];
/third_party/musl/porting/liteos_a/kernel/include/
Dsignal.h147 struct sigevent { struct
148 union sigval sigev_value;
149 int sigev_signo;
150 int sigev_notify;
151 void (*sigev_notify_function)(union sigval);
152 void *sigev_notify_attributes;
/third_party/musl/porting/liteos_m_iccarm/kernel/include/
Dsignal.h179 struct sigevent { struct
180 union sigval sigev_value;
181 int sigev_signo;
182 int sigev_notify;
183 void (*sigev_notify_function)(union sigval);
184 pthread_attr_t *sigev_notify_attributes;
185 char __pad[56-3*sizeof(long)];
/third_party/musl/porting/linux/user/include/
Dsignal.h180 struct sigevent { struct
181 union sigval sigev_value;
182 int sigev_signo;
183 int sigev_notify;
184 void (*sigev_notify_function)(union sigval);
185 pthread_attr_t *sigev_notify_attributes;
186 char __pad[56-3*sizeof(long)];
/third_party/musl/porting/liteos_m/kernel/include/
Dsignal.h179 struct sigevent { struct
180 union sigval sigev_value;
181 int sigev_signo;
182 int sigev_notify;
183 void (*sigev_notify_function)(union sigval);
184 pthread_attr_t *sigev_notify_attributes;
185 char __pad[56-3*sizeof(long)];
/third_party/musl/porting/uniproton/kernel/include/
Dsignal.h179 struct sigevent { struct
180 union sigval sigev_value;
181 int sigev_signo;
182 int sigev_notify;
183 void (*sigev_notify_function)(union sigval);
184 pthread_attr_t *sigev_notify_attributes;
185 char __pad[56-3*sizeof(long)];
/third_party/musl/ndk_musl_include/
Dsignal.h180 struct sigevent { struct
181 union sigval sigev_value;
182 int sigev_signo;
183 int sigev_notify;
184 void (*sigev_notify_function)(union sigval);
185 pthread_attr_t *sigev_notify_attributes;
186 char __pad[56-3*sizeof(long)];
/third_party/python/Lib/lib2to3/tests/data/
Dinfinite_recursion.py2299 class sigevent(Structure): class