Searched refs:EDEADLK (Results 1 - 25 of 91) sorted by relevance

1234

/netbsd-current/tests/lib/libpthread/
H A Dt_rwlock.c104 ATF_REQUIRE_MSG(error == ETIMEDOUT || error == EDEADLK,
118 ATF_REQUIRE_MSG(error == ETIMEDOUT || error == EDEADLK,
H A Dt_join.c95 * The specification recommends EDEADLK.
98 ATF_REQUIRE_EQ(rv, EDEADLK);
/netbsd-current/lib/librumpuser/
H A Drumpuser_errtrans.c57 #ifdef EDEADLK
58 case EDEADLK : return 11;
/netbsd-current/sys/rump/include/rump/
H A Drumperrno2host.h60 #ifdef EDEADLK
62 return EDEADLK;
/netbsd-current/external/apache2/llvm/dist/libcxx/include/
H A Derrno.h375 #ifndef EDEADLK
376 #define EDEADLK 9975 macro
/netbsd-current/external/gpl3/gdb/dist/sim/common/
H A Dtarget-newlib-errno.c77 #ifdef EDEADLK
78 { "EDEADLK", EDEADLK, 45 },
/netbsd-current/sys/external/mit/xen-include-public/dist/xen/include/public/
H A Derrno.h90 XEN_ERRNO(EDEADLK, 35) /* Resource deadlock would occur */
91 XEN_ERRNO(EDEADLOCK, 35) /* Resource deadlock would occur. Aliases EDEADLK */
/netbsd-current/sys/sys/
H A Derrno.h52 #define EDEADLK 11 /* Resource deadlock avoided */ macro
/netbsd-current/sys/external/bsd/drm2/dist/include/drm/
H A Ddrm_modeset_lock.h37 * @contended: used internally for -EDEADLK handling
43 * ctx. And if any lock fxn returns -EDEADLK, it must backoff and
183 * if ret is -EDEADLK.
189 * ret will be untouched unless it is -EDEADLK on entry. That means that if you
197 if (ret == -EDEADLK) { \
/netbsd-current/external/gpl3/gcc.old/dist/libstdc++-v3/config/os/mingw32/
H A Derror_constants.h119 resource_deadlock_would_occur = EDEADLK,
/netbsd-current/external/gpl3/gcc/dist/libstdc++-v3/config/os/mingw32/
H A Derror_constants.h119 resource_deadlock_would_occur = EDEADLK,
/netbsd-current/external/gpl3/gcc.old/dist/libstdc++-v3/src/c++11/
H A Dsystem_error.cc130 #ifdef EDEADLK
131 case EDEADLK:
/netbsd-current/crypto/external/bsd/openssl/dist/crypto/
H A Dthreads_pthread.c99 assert(errno != EDEADLK && errno != EBUSY);
114 assert(errno != EDEADLK && errno != EBUSY);
/netbsd-current/external/gpl3/gcc.old/dist/libstdc++-v3/config/os/djgpp/
H A Derror_constants.h146 resource_deadlock_would_occur = EDEADLK,
/netbsd-current/external/gpl3/gcc/dist/libstdc++-v3/config/os/djgpp/
H A Derror_constants.h146 resource_deadlock_would_occur = EDEADLK,
/netbsd-current/external/gpl3/gdb/dist/gdb/testsuite/gdb.threads/
H A Dtls.c63 case EDEADLK:
64 fprintf (stderr, "EDEADLK\n");
/netbsd-current/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.threads/
H A Dtls.c63 case EDEADLK:
64 fprintf (stderr, "EDEADLK\n");
/netbsd-current/external/cddl/osnet/lib/libdtrace/
H A Derrno.d59 inline int EDEADLK = 11;
60 #pragma D binding "1.0" EDEADLK
/netbsd-current/external/gpl3/gcc.old/dist/libstdc++-v3/config/os/mingw32-w64/
H A Derror_constants.h135 resource_deadlock_would_occur = EDEADLK,
/netbsd-current/external/gpl3/gcc.old/dist/libstdc++-v3/config/os/generic/
H A Derror_constants.h146 resource_deadlock_would_occur = EDEADLK,
/netbsd-current/external/gpl3/gcc/dist/libstdc++-v3/config/os/generic/
H A Derror_constants.h146 resource_deadlock_would_occur = EDEADLK,
/netbsd-current/external/gpl3/gcc/dist/libstdc++-v3/config/os/mingw32-w64/
H A Derror_constants.h135 resource_deadlock_would_occur = EDEADLK,
/netbsd-current/sys/external/bsd/drm2/dist/drm/
H A Ddrm_modeset_lock.c52 * if (ret == -EDEADLK) {
117 if (ret == -EDEADLK) {
280 } else if (ret == -EDEADLK) {
291 * If deadlock is detected (ie. drm_modeset_lock() returns -EDEADLK),
332 * drm_modeset_drop_locks(). If -EDEADLK is returned, this means a
H A Ddrm_probe_helper.c288 if (ret == -EDEADLK) {
310 * if @ctx is set, it might also return -EDEADLK.
417 if (ret == -EDEADLK) {
440 if (ret == -EDEADLK) {
/netbsd-current/sys/ufs/lfs/
H A Dlfs_pages.c606 error = EDEADLK;
615 * Instruct lfs_gop_write to return EDEADLK in this case
622 if (r != EDEADLK) {
715 * unless genfs_putpages returns EDEADLK; then we must flush
790 if (error == EDEADLK || error == EAGAIN) {
820 if (error == EDEADLK)
822 } while (error == EDEADLK || (oreclaim && error == EAGAIN));

Completed in 318 milliseconds

1234