Searched refs:exiting (Results 1 - 11 of 11) sorted by relevance

/freebsd-10.2-release/contrib/netbsd-tests/bin/sh/
H A Dt_exit.sh71 atf_check -s eq:0 -o inline:'exiting\n' -x \
72 '( trap "echo exiting" EXIT; /usr/bin/true )'
78 echo '( trap "echo exiting" 0 )' >helper.sh
79 atf_check -s eq:0 -o match:exiting -e empty /bin/sh helper.sh
80 atf_check -s eq:0 -o match:exiting -e empty /bin/ksh helper.sh
85 echo '( trap "echo exiting" 0; exit )' >helper.sh
86 atf_check -s eq:0 -o match:exiting -e empty /bin/sh helper.sh
87 atf_check -s eq:0 -o match:exiting -e empty /bin/ksh helper.sh
92 echo '( trap "echo exiting" 0; return )' >helper.sh
93 atf_check -s eq:0 -o match:exiting
[all...]
/freebsd-10.2-release/gnu/usr.bin/rcs/lib/
H A Dconf.h133 # define exiting __attribute__((noreturn)) macro
135 # define exiting macro
202 # define printf_string_exiting(m, n) printf_string(m, n) exiting
379 void _exit P((int)) exiting;
380 void exit P((int)) exiting;
H A Drcsbase.h444 void exiterr P((void)) exiting;
554 void efaterror P((char const*)) exiting;
555 void enfaterror P((int,char const*)) exiting;
556 void fatcleanup P((int)) exiting;
560 void Ieof P((void)) exiting;
561 void Ierror P((void)) exiting;
562 void Oerror P((void)) exiting;
672 void unexpected_EOF P((void)) exiting;
H A Drcssyn.c162 static void badDiffOutput P((char const*)) exiting;
163 static void diffLineNumberTooLarge P((char const*)) exiting;
H A Drcsedit.c206 static void editEndsPrematurely P((void)) exiting;
207 static void editLineNumberOverflow P((void)) exiting;
/freebsd-10.2-release/bin/sh/
H A Dtrap.c85 static int exiting; /* exitshell() has been called */ variable
492 exiting = 1;
505 if (!exiting) {
/freebsd-10.2-release/contrib/sendmail/src/
H A Derr.c38 ** exception "F:sm.heap". As such, they are handled by exiting
130 bool panic, exiting, keep; local
138 panic = exiting = keep = false;
143 panic = exiting = true;
147 exiting = true;
158 if (exiting)
/freebsd-10.2-release/contrib/ntp/lib/isc/
H A Dtask.c158 isc_boolean_t exiting; member in struct:isc__taskmgr
166 #define FINISHED(m) ((m)->exiting && EMPTY((m)->tasks))
313 * task manager is exiting. Wake up
334 isc_boolean_t exiting; local
367 exiting = ISC_FALSE;
369 if (!manager->exiting) {
374 exiting = ISC_TRUE;
377 if (exiting) {
1088 * lock before exiting the 'if (task != NULL)' block.
1286 ISC_MSG_EXITING, "exiting"));
[all...]
/freebsd-10.2-release/contrib/llvm/tools/lldb/tools/driver/
H A DDriver.cpp552 Driver::ParseArgs (int argc, const char *argv[], FILE *out_fh, bool &exiting) argument
785 exiting = true;
790 exiting = true;
808 exiting = true;
1050 bool exiting = false; local
1051 SBError error (driver.ParseArgs (argc, argv, stdout, exiting));
1058 else if (!exiting)
/freebsd-10.2-release/sys/kern/
H A Dkern_exit.c130 reaper_abandon_children(struct proc *p, bool exiting) argument
144 if (exiting && p2->p_pptr == p) {
259 ("exit1: proc %p exiting with %d threads", p, p->p_numthreads));
276 KASSERT(!P_SHOULDSTOP(p), ("exiting process is stopped"));
279 * Note that we are exiting and do another wakeup of anyone in
281 * decided to wait again after we told them we are exiting.
483 WITNESS_WARN(WARN_PANIC, NULL, "process (pid %d) exiting", p->p_pid);
/freebsd-10.2-release/sys/sys/
H A Dproc.h526 volatile int p_exitthreads; /* (j) Number of threads exiting */
629 #define P_WEXIT 0x02000 /* Working on exiting. */
785 ("PHOLD of exiting process")); \
913 void reaper_abandon_children(struct proc *p, bool exiting);

Completed in 61 milliseconds