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

/freebsd-11-stable/crypto/heimdal/kuser/
H A Dkdestroy.c77 int exit_val = 0; local
114 exit_val = 1;
157 exit_val = 1;
167 exit_val = 1;
171 return exit_val;
/freebsd-11-stable/bin/pax/
H A Dpax.c98 int exit_val; /* exit value */ variable
223 * any operational flaw will set exit_val to non-zero
241 return(exit_val);
255 return(exit_val);
267 return(exit_val);
292 return(exit_val);
H A Dtty_subs.c142 exit_val = 1;
170 exit_val = 1;
H A Dbuf_subs.c213 if (exit_val != 0) {
867 exit_val = 1;
897 exit_val = 1;
986 exit_val = 1;
H A Dextern.h231 extern int exit_val;
/freebsd-11-stable/usr.bin/ctags/
H A Dctags.c93 int exit_val; /* exit value */ local
149 for (exit_val = step = 0; step < argc; ++step)
152 exit_val = 1;
219 exit(exit_val);
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/
H A Dz_Windows_NT_util.cpp946 void *exit_val; local
988 exit_val = __kmp_launch_thread(this_thr);
992 return exit_val;
1240 with a exit_val = code. Because of this we can not rely on exit_val having
1241 any particular value. So this routine may return STILL_ALIVE in exit_val
1244 int __kmp_is_thread_alive(kmp_info_t *th, DWORD *exit_val) { argument
1246 rc = GetExitCodeThread(th->th.th_info.ds.ds_thread, exit_val);
1252 return (*exit_val == STILL_ACTIVE);
1261 DWORD exit_val; local
[all...]
H A Dz_Linux_util.cpp527 void *exit_val; local
589 exit_val = __kmp_launch_thread((kmp_info_t *)thr);
596 return exit_val;
1054 void *exit_val; local
1080 status = pthread_join(th->th.th_info.ds.ds_thread, &exit_val);
1081 if (exit_val != th) {
1098 void *exit_val; local
1105 status = pthread_join(th->th.th_info.ds.ds_thread, &exit_val);
1111 if (exit_val != th) {
1113 "exit_val
[all...]
H A Dkmp_tasking.cpp3408 DWORD exit_val; local
3417 if (!__kmp_is_thread_alive(thread, &exit_val)) {
H A Dkmp.h3380 extern int __kmp_is_thread_alive(kmp_info_t *th, DWORD *exit_val);
H A Dkmp_runtime.cpp571 DWORD exit_val; local
572 int alive = __kmp_is_thread_alive(th, &exit_val);

Completed in 153 milliseconds