Searched refs:pid (Results 1 - 25 of 180) sorted by relevance

12345678

/bind-9.6-ESV-R11/contrib/nanny/
H A Dnanny.pl22 $pid_file_location = '/var/run/named.pid';
30 $pid = 0;
32 $pid = <FILE>;
34 chomp($pid);
36 $res = kill 0, $pid;
49 if ($pid != 0) {
50 kill 15, $pid;
/bind-9.6-ESV-R11/bin/tests/system/stress/
H A Dtests.sh38 done" & echo $! >reload.pid
50 kill `cat reload.pid`
H A Dclean.sh20 rm -f reload.pid
/bind-9.6-ESV-R11/lib/isc/
H A Drandom.c45 unsigned int pid = getpid(); local
48 * The low bits of pid generally change faster.
51 pid = ((pid << 16) & 0xffff0000) | ((pid >> 16) & 0xffff);
53 srand(time(NULL) ^ pid);
/bind-9.6-ESV-R11/bin/tests/system/
H A Dstop.pl109 $pid_file = "named.pid";
111 $pid_file = "lwresd.pid";
113 $pid_file = "ans.pid";
133 my $pid = <FH>;
134 chomp($pid);
135 return $pid;
157 my $pid = read_pid($pid_file);
158 return unless defined($pid);
165 my $result = kill $sig, $pid;
/bind-9.6-ESV-R11/bin/tests/system/logfileconfig/
H A Dclean.sh22 rm -f ns1/named.pid ns1/named.run
/bind-9.6-ESV-R11/bin/tests/system/database/ns1/
H A Dnamed.conf135 pid-file "named.pid";
H A Dnamed.conf235 pid-file "named.pid";
/bind-9.6-ESV-R11/bin/tests/system/ixfr/
H A Dsetup.sh28 pid-file "named.pid";
/bind-9.6-ESV-R11/bin/tests/system/logfileconfig/ns1/
H A Dnamed.dirconf24 pid-file "named.pid";
H A Dnamed.pipeconf24 pid-file "named.pid";
H A Dnamed.plain24 pid-file "named.pid";
H A Dnamed.symconf24 pid-file "named.pid";
/bind-9.6-ESV-R11/bin/tests/system/tkey/ns1/
H A Dnamed.conf.in27 pid-file "named.pid";
/bind-9.6-ESV-R11/bin/tests/system/xfer/ns4/
H A Dnamed.conf.base24 pid-file "named.pid";
/bind-9.6-ESV-R11/bin/named/unix/
H A Dos.c178 caphead.pid = 0;
393 pid_t pid; local
401 pid = fork();
402 if (pid == -1) {
406 if (pid != 0) {
716 pid_t pid; local
754 (*report)("couldn't open pid file '%s': %s", filename, strbuf);
762 (*report)("could not fdopen() pid file '%s': %s",
769 pid = mainpid;
771 pid
818 pid_t pid; local
[all...]
/bind-9.6-ESV-R11/lib/isc/unix/
H A Ddir.c190 int pid; local
198 pid = getpid();
204 x--, pid /= 10)
205 *x = pid % 10 + '0';
/bind-9.6-ESV-R11/lib/isc/win32/
H A Ddir.c249 int pid; local
257 pid = getpid();
263 x--, pid /= 10)
264 *x = pid % 10 + '0';
/bind-9.6-ESV-R11/unit/atf-src/atf-c++/
H A Dutils.cpp100 atf::utils::wait(const pid_t pid, const int exitstatus, argument
103 atf_utils_wait(pid, exitstatus, expout.c_str(), experr.c_str());
H A Dutils_test.cpp229 pid_t pid = atf::utils::fork(); local
230 if (pid == 0) {
237 ATF_REQUIRE(waitpid(pid, &status, 0) != -1);
331 const pid_t pid = atf::utils::fork(); local
332 if (pid == 0) {
337 atf::utils::wait(pid, exitstatus, expout, experr);
/bind-9.6-ESV-R11/unit/atf-src/atf-c/
H A Dutils.c230 const pid_t pid = fork(); local
231 if (pid == -1)
234 if (pid == 0) {
238 return pid;
376 * \param pid The process to be waited for. Must have been started by
382 atf_utils_wait(const pid_t pid, const int exitstatus, const char *expout, argument
386 ATF_REQUIRE(waitpid(pid, &status, 0) != -1);
H A Dutils_test.c237 pid_t pid = atf_utils_fork(); local
238 if (pid == 0) {
245 ATF_REQUIRE(waitpid(pid, &status, 0) != -1);
386 const pid_t pid = atf_utils_fork(); local
387 if (pid == 0) {
392 atf_utils_wait(pid, exitstatus, expout, experr);
/bind-9.6-ESV-R11/unit/atf-src/atf-c/detail/
H A Dprocess.c395 const pid_t pid,
405 c->m_pid = pid;
465 pid_t pid; local
475 pid = fork();
476 if (pid == -1) {
481 if (pid == 0) {
487 err = do_parent(c, pid, &outsp, &errsp);
394 do_parent(atf_process_child_t *c, const pid_t pid, const stream_prepare_t *outsp, const stream_prepare_t *errsp) argument
H A Dprocess_test.c583 pid_t pid; local
586 pid = fork();
587 ATF_REQUIRE(pid != -1);
588 if (pid == 0) {
593 ATF_REQUIRE(waitpid(pid, &status, 0) != 0);
694 const pid_t pid = getpid(); local
695 if (write(STDOUT_FILENO, &pid, sizeof(pid)) != sizeof(pid))
704 atf_tc_set_md_var(tc, "descr", "Tests the correctness of the pid "
712 pid_t pid; local
722 ATF_CHECK_EQ(atf_process_child_pid(&child), pid); local
[all...]
/bind-9.6-ESV-R11/bin/tests/system/allow_query/ns2/
H A Dnamed01.conf23 pid-file "named.pid";

Completed in 253 milliseconds

12345678