Searched refs:kill (Results 1 - 25 of 204) sorted by relevance

123456789

/haiku-fatelf/src/tests/system/benchmarks/libMicro/
H A Dsignal.c86 (void) kill(pid, SIGUSR1);
87 (void) kill(pid, SIGUSR1);
88 (void) kill(pid, SIGUSR1);
89 (void) kill(pid, SIGUSR1);
90 (void) kill(pid, SIGUSR1);
91 (void) kill(pid, SIGUSR1);
92 (void) kill(pid, SIGUSR1);
93 (void) kill(pid, SIGUSR1);
94 (void) kill(pid, SIGUSR1);
95 (void) kill(pi
[all...]
/haiku-fatelf/src/bin/coreutils/man/
H A Dkill.x2 kill \- send signals to processes, or list signals
6 kill(2)
/haiku-fatelf/src/bin/coreutils/lib/
H A Draise.c29 return kill (getpid (), sig);
/haiku-fatelf/src/tests/system/libroot/posix/posixtestsuite/conformance/definitions/signal_h/
H A D24-1.c3 int kill(pid_t, int);
15 dummyvar = kill;
/haiku-fatelf/src/system/libroot/posix/signal/
H A Dkillpg.cpp17 return kill(-processGroupID, signal);
H A Dkill.c17 kill(pid_t pid, int sig) function
/haiku-fatelf/src/tests/system/libroot/posix/posixtestsuite/conformance/interfaces/kill/
H A D2-1.c15 * 1) Call kill on the current process with the null signal.
16 * 2) If process is still functional after kill() is called, consider
22 if (kill(getpid(), 0) != 0) {
23 printf("Could not call kill with sig = 0\n");
H A D2-2.c16 * Test that when the null signal is sent to kill(), error checking is
20 * 2) Verify ESRCH error received and kill() returned -1.
23 * 4) Verify EPERM error received and kill() returned -1.
40 if (-1 == kill(999999, 0)) {
44 printf("kill() failed on ESRCH errno not set correctly\n");
48 printf("kill() did not fail on ESRCH\n");
57 if (-1 == kill(1, 0)) {
61 printf("kill() failed on EPERM errno not set correctly\n");
65 printf("kill() did not fail on EPERM\n");
H A D3-1.c9 doesn't match the user id of the receiving process (pid), then the kill function
26 if (kill(1, 0) != -1) {
27 printf("Test FAILED: kill() succeeded even though this program's user id did not match the recieving process's user id\n");
H A D1-1.c8 * Test that the kill() function shall send signal sig to the process
12 * 2) Call kill on the current process with the signal.
47 if (kill(getpid(), SIGTOTEST) != 0) {
/haiku-fatelf/src/tests/system/libroot/posix/posixtestsuite/conformance/interfaces/sched_setparam/
H A D1-1.c61 kill(child_pid, SIGUSR1);
86 kill(child_pid, SIGUSR1);
92 kill(child_pid, SIGUSR1);
96 kill(child_pid, SIGUSR1);
100 kill(child_pid, SIGUSR1);
110 kill(child_pid, SIGUSR1);
116 kill(child_pid, SIGUSR1);
/haiku-fatelf/src/tests/system/libroot/posix/posixtestsuite/conformance/interfaces/mq_timedsend/
H A D5-2.c99 kill(getppid(), SIGABRT);
112 kill(pid, SIGABRT); //signal child
119 kill(pid, SIGKILL); //kill child if not gone
127 kill(pid, SIGKILL); //kill child if not gone
133 kill(pid, SIGKILL); //kill child if not gone
H A D16-1.c102 kill(getppid(), SIGABRT);
106 kill(getppid(), SIGABRT);
127 kill(pid, SIGUSR1);
144 kill(pid, SIGKILL); //kill child
160 kill(pid, SIGKILL); //kill child
H A D5-3.c92 kill(getppid(), SIGABRT);
96 kill(getppid(), SIGABRT);
114 kill(pid, SIGUSR1);
127 kill(pid, SIGKILL); //kill child
141 kill(pid, SIGKILL); //kill child
H A D5-1.c86 kill(getppid(), SIGABRT);
111 kill(pid, SIGKILL); //kill child
126 kill(pid, SIGKILL); //kill child
/haiku-fatelf/src/tests/kits/net/sock/
H A Dtellwait.c37 kill(pid, SIGUSR2); /* tell parent we're done */
55 kill(pid, SIGUSR1); /* tell child we're done */
/haiku-fatelf/src/tests/system/libroot/posix/posixtestsuite/conformance/interfaces/mq_send/
H A D5-2.c94 kill(getppid(), SIGABRT);
107 kill(pid, SIGABRT); //signal child
114 kill(pid, SIGKILL); //kill child if not gone
122 kill(pid, SIGKILL); //kill child if not gone
H A D12-1.c96 kill(getppid(), SIGABRT);
108 kill(pid, SIGABRT); //signal child
120 kill(pid, SIGKILL); //kill child if not gone
H A D5-1.c81 kill(getppid(), SIGABRT);
104 kill(pid, SIGKILL); //kill child
119 kill(pid, SIGKILL); //kill child
/haiku-fatelf/src/bin/gdb/bfd/
H A Dcache.c239 register bfd *kill; local
242 kill = NULL;
245 for (kill = bfd_last_cache->lru_prev;
246 ! kill->cacheable;
247 kill = kill->lru_prev)
249 if (kill == bfd_last_cache)
251 kill = NULL;
257 if (kill == NULL)
263 kill
[all...]
/haiku-fatelf/src/tests/system/libroot/posix/posixtestsuite/conformance/interfaces/shm_open/
H A D5-1.c54 kill(getppid(), SIGUSR1);
60 kill(getppid(), SIGUSR1);
67 kill(getppid(), SIGUSR1);
/haiku-fatelf/src/tests/system/libroot/posix/posixtestsuite/conformance/interfaces/sigaction/
H A D10-1.c64 kill(pid, SIGSTOP);
79 kill(pid, SIGCONT);
83 kill(pid, SIGHUP);
H A D11-1.c77 kill(pid, SIGSTOP);
89 kill(pid, SIGCONT);
100 kill(pid, SIGHUP);
H A D9-1.c66 kill(pid, SIGSTOP);
90 kill(pid, SIGCONT);
94 kill(pid, SIGHUP);
/haiku-fatelf/src/tests/system/libroot/posix/posixtestsuite/conformance/interfaces/mq_open/
H A D8-2.c119 /* kill child and exit */
120 kill(pid, SIGABRT);
130 /* kill child, close queue and exit */
131 kill(pid, SIGABRT);
143 /* kill child, close queue and exit */
144 kill(pid, SIGABRT);
154 kill(pid, SIGUSR1); //tell child mq_open and mq_send finished

Completed in 324 milliseconds

123456789