Searched refs:EBUSY (Results 1 – 25 of 63) sorted by relevance
123
/glibc-2.36/nptl/ |
D | tst-rwlock2.c | 75 if (e != EBUSY) in do_test() 88 if (e != EBUSY) in do_test() 115 if (e != EBUSY) in do_test() 142 if (e != EBUSY) in do_test()
|
D | tst-mutex8.c | 164 if (e != EBUSY) in check_type() 195 if (e != EBUSY) in check_type() 247 if (e != EBUSY) in check_type() 322 if (e != EBUSY) in check_type()
|
D | pthread_mutex_trylock.c | 172 return EBUSY; in ___pthread_mutex_trylock() 281 return EBUSY; in ___pthread_mutex_trylock() 303 return EBUSY; in ___pthread_mutex_trylock() 449 return EBUSY; in ___pthread_mutex_trylock()
|
D | pthread_rwlock_tryrdlock.c | 51 return EBUSY; in ___pthread_rwlock_tryrdlock() 59 return EBUSY; in ___pthread_rwlock_tryrdlock()
|
D | pthread_spin_trylock.c | 79 return EBUSY; in __pthread_spin_trylock()
|
D | pthread_tryjoin.c | 27 return EBUSY; in __pthread_tryjoin_np()
|
/glibc-2.36/login/ |
D | login_tty.c | 67 while (__dup2(fd, 0) == -1 && errno == EBUSY) in __login_tty() 69 while (__dup2(fd, 1) == -1 && errno == EBUSY) in __login_tty() 71 while (__dup2(fd, 2) == -1 && errno == EBUSY) in __login_tty()
|
/glibc-2.36/sysdeps/mach/hurd/htl/ |
D | pt-mutex-trylock.c | 37 ret = EBUSY; in __pthread_mutex_trylock() 56 ret = EBUSY; in __pthread_mutex_trylock() 65 ret = EBUSY; in __pthread_mutex_trylock()
|
D | pt-mutex-destroy.c | 31 return EBUSY; in __pthread_mutex_destroy()
|
/glibc-2.36/htl/tests/ |
D | test-11.c | 131 assert (err == EBUSY); in main() 143 assert (err == EBUSY); in main() 147 assert (err == EBUSY); in main()
|
/glibc-2.36/sysdeps/pthread/ |
D | tst-join2.c | 66 else if (val != EBUSY) in do_test() 80 if (val != EBUSY) in do_test()
|
D | thrd_priv.h | 38 case EBUSY: in thrd_err_map()
|
/glibc-2.36/rt/ |
D | tst-mqueue5.c | 247 else if (errno != EBUSY) in do_child() 352 else if (errno != EBUSY) in do_child() 657 else if (errno != EBUSY) in do_test() 707 else if (errno != EBUSY) in do_test() 794 else if (errno != EBUSY) in do_test() 856 else if (errno != EBUSY) in do_test()
|
D | tst-mqueue6.c | 163 else if (errno != EBUSY) in do_test() 225 else if (errno != EBUSY) in do_test()
|
/glibc-2.36/posix/ |
D | tst-spawn6.c | 223 while (dup2 (ptmx, STDIN_FILENO) == -1 && errno == EBUSY) in do_test() 225 while (dup2 (ptmx, STDOUT_FILENO) == -1 && errno == EBUSY) in do_test() 227 while (dup2 (ptmx, STDERR_FILENO) == -1 && errno == EBUSY) in do_test()
|
/glibc-2.36/sysdeps/mach/hurd/bits/ |
D | errno.h | 52 EBUSY = 0x40000010, /* Device or resource busy */ enumerator 249 #define EBUSY 0x40000010 macro
|
/glibc-2.36/sysdeps/ia64/nptl/ |
D | pthread_spin_trylock.c | 25 return __sync_val_compare_and_swap ((int *) lock, 0, 1) == 0 ? 0 : EBUSY; in __pthread_spin_trylock()
|
/glibc-2.36/sysdeps/htl/ |
D | sem-destroy.c | 38 errno = EBUSY; in __sem_destroy()
|
D | pt-rwlock-trywrlock.c | 44 return EBUSY; in pthread_rwlock_trywrlock()
|
D | pt-cond-destroy.c | 32 return EBUSY; in __pthread_cond_destroy()
|
/glibc-2.36/sysdeps/powerpc/nptl/ |
D | pthread_spin_trylock.c | 26 int err = EBUSY; in __pthread_spin_trylock()
|
/glibc-2.36/sysdeps/sparc/sparc64/ |
D | pthread_spin_trylock.S | 27 movrnz %o0, EBUSY, %o0
|
/glibc-2.36/sysdeps/sparc/sparc32/ |
D | pthread_spin_trylock.S | 27 mov EBUSY, %o0
|
/glibc-2.36/sysdeps/x86_64/nptl/ |
D | pthread_spin_trylock.S | 27 movl $EBUSY, %eax
|
/glibc-2.36/sysdeps/sh/nptl/ |
D | pthread_spin_trylock.S | 27 mov #EBUSY, r0
|
123