HomeSort by relevance Sort by last modified time
    Searched refs:sigwaitinfo (Results 1 - 25 of 36) sorted by null

1 2

  /external/ltp/testcases/open_posix_testsuite/conformance/definitions/signal_h/
49-1-buildonly.c 3 int sigwaitinfo(const sigset_t *restrict, siginfo_t *restrict);
15 dummyvar = sigwaitinfo;
  /external/ltp/testcases/kernel/syscalls/rt_sigtimedwait/
Makefile 25 rt_sigtimedwait01: $(abs_srcdir)/../sigwaitinfo/sigwaitinfo01.c
  /external/ltp/testcases/kernel/syscalls/sigtimedwait/
Makefile 25 sigtimedwait01: $(abs_srcdir)/../sigwaitinfo/sigwaitinfo01.c
  /external/ltp/testcases/kernel/syscalls/sigwait/
Makefile 25 sigwait01: $(abs_srcdir)/../sigwaitinfo/sigwaitinfo01.c
  /external/ltp/testcases/kernel/syscalls/sigwaitinfo/
sigwaitinfo01.c 114 return sigwaitinfo(set, info);
137 void test_empty_set(swi_func sigwaitinfo, int signo)
147 TEST(sigwaitinfo(&sigs, &si, NULL));
153 void test_timeout(swi_func sigwaitinfo, int signo)
165 TEST(sigwaitinfo(&sigs, &si, &ts));
174 void test_unmasked_matching(swi_func sigwaitinfo, int signo)
186 TEST(sigwaitinfo(&sigs, &si, NULL));
194 void test_unmasked_matching_noinfo(swi_func sigwaitinfo, int signo)
204 TEST(sigwaitinfo(&sigs, NULL, NULL));
210 void test_masked_matching(swi_func sigwaitinfo, int signo
    [all...]
  /external/compiler-rt/test/msan/
sigwaitinfo.cc 20 int res = sigwaitinfo(&s, &info);
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sigwaitinfo/
1-1.c 8 * Test that the sigwaitinfo() function shall select the pending signal
16 4. Call sigwaitinfo() and verify that the signal is no longer pending.
60 if (sigwaitinfo(&selectset, NULL) == -1) {
61 perror("Call to sigwaitinfo() failed\n");
70 ("Test FAILED: Signal %d still pending even after call to sigwaitinfo()\n",
2-1.c 9 selected by sigwaitinfo() if there are any multiple pending signals in the
16 will be passed to sigwaitinfo().
19 - call sigwaitinfo() and verify that it returns SIGRTMIN
67 if (sigwaitinfo(&selectset, NULL) != SIGRTMIN) {
69 ("Test FAILED: sigwaitinfo() did not return the lowest of the multiple pending signals between SIGRTMIN and SIGRTMAX\n");
3-1.c 8 * This program tests the assertion that if sigwaitinfo() was called and that
9 no signal in set was pending at the time of the call, then sigwaitinfo()
14 2. call sigwaitinfo() with SIGTOTEST in set.
17 that sigwaitinfo() has returned from it's suspended state.
58 printf("Child calling sigwaitinfo()\n");
60 if (sigwaitinfo(&selectset, NULL) == -1) {
61 perror("Call to sigwaitinfo() failed\n");
65 printf("returned from sigwaitinfo\n");
5-1.c 13 3. Call sigwaitinfo() with only SIGTOTEST in set.
54 if (sigwaitinfo(&selectset, &info) == -1) {
55 perror("Call to sigwaitinfo() failed\n");
6-1.c 13 3. Call sigwaitinfo() with only SIGTOTEST in set.
54 if (sigwaitinfo(&selectset, &info) == -1) {
55 perror("Call to sigwaitinfo() failed\n");
9-1.c 8 * Test that the sigwaitinfo() function shall return the selected signal
15 4. Call sigwaitinfo() and verify that it returns the signal SIGTOTEST.
59 if (sigwaitinfo(&selectset, NULL) != SIGTOTEST) {
60 perror("Call to sigwaitinfo() failed\n");
7-1.c 17 - Call sigwaitinfo() NUMCALLS times, and verify that the queued signals are
71 if (sigwaitinfo(&selectset, &info) != SIGTOTEST) {
73 ("sigwaitinfo() returned signal other than SIGTOTEST\n");
8-1.c 18 - Call sigwaitinfo() NUMCALLS times, and verify that the pending indication
70 if (sigwaitinfo(&selectset, &info) != SIGTOTEST) {
72 ("sigwaitinfo() returned signal other than SIGTOTEST\n");
81 ("Test FAILED: Signal %d still pending even after call to sigwaitinfo()\n",
  /bionic/tests/
ScopedSignalHandler.h 41 #define sigwaitinfo64 sigwaitinfo
signal_test.cpp 600 TEST(signal, sigwaitinfo) {
617 ASSERT_EQ(SIGALRM, sigwaitinfo(&just_SIGALRM, &info));
  /external/ltp/testcases/kernel/syscalls/
Makefile 44 sigrelse sigsuspend sigtimedwait sigwait sigwaitinfo stime \
  /external/valgrind/none/tests/
pending.c 76 if (sigwaitinfo(&all, &info) == -1) {
77 perror("FAILED: sigwaitinfo failed");
  /external/ltp/testcases/kernel/controllers/cpuset/cpuset_memory_test/
cpuset_memory_test.c 302 if (sigwaitinfo(&waitset, NULL) < 0)
303 err(1, "sigwaitinfo() in thread2 failed");
354 signo = sigwaitinfo(&waitset, NULL);
356 err(1, "sigwaitinfo() failed");
  /bionic/libc/include/
signal.h 122 int sigwaitinfo(const sigset_t* __set, siginfo_t* __info) __INTRODUCED_IN(23);
  /bionic/tests/headers/posix/
signal_h.c 228 FUNCTION(sigwaitinfo, int (*f)(const sigset_t*, siginfo_t*));
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
signal.h 285 extern int sigwaitinfo (__const sigset_t *__restrict __set,
  /bionic/libc/bionic/
signal.cpp 307 int sigwaitinfo(const sigset_t* set, siginfo_t* info) { function
  /external/python/cpython3/Lib/test/eintrdata/
eintr_tester.py 385 @unittest.skipUnless(hasattr(signal, 'sigwaitinfo'),
386 'need signal.sigwaitinfo()')
389 # between os.write() and signal.sigwaitinfo() to works around a race
422 signal.sigwaitinfo([signum])
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
pthread.h 489 #define sigwaitinfo(...) (pthread_testcancel(), sigwaitinfo(__VA_ARGS__)) macro
    [all...]

Completed in 606 milliseconds

1 2