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

/freebsd-12-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-12-stable/bin/pax/
H A Dpax.c100 int exit_val; /* exit value */ variable
225 * any operational flaw will set exit_val to non-zero
243 return(exit_val);
257 return(exit_val);
269 return(exit_val);
294 return(exit_val);
H A Dtty_subs.c144 exit_val = 1;
172 exit_val = 1;
H A Dbuf_subs.c215 if (exit_val != 0) {
869 exit_val = 1;
899 exit_val = 1;
988 exit_val = 1;
H A Dextern.h233 extern int exit_val;
/freebsd-12-stable/usr.bin/ctags/
H A Dctags.c95 int exit_val; /* exit value */ local
151 for (exit_val = step = 0; step < argc; ++step)
154 exit_val = 1;
221 exit(exit_val);
/freebsd-12-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 277 milliseconds