mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2026-05-12 11:18:11 -07:00
EBUSY error code is 16
This commit is contained in:
@@ -43,7 +43,7 @@ static inline int pthread_spin_trylock(pthread_spinlock_t *lock) {
|
||||
if (__sync_bool_compare_and_swap(lock, 0, 1)) {
|
||||
return 0;
|
||||
}
|
||||
return EBUSY;
|
||||
return 16; // EBUSY;
|
||||
}
|
||||
|
||||
static inline int pthread_spin_unlock(pthread_spinlock_t *lock) {
|
||||
|
||||
Reference in New Issue
Block a user