mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-14 18:48:13 -07:00
EBUSY error code is 16
Some checks are pending
CodeQL / Analyze (push) Waiting to run
MacOS Build and Test / macos-make (push) Waiting to run
MacOS Build and Test / macos-make-btaddon (push) Waiting to run
MacOS Build and Test / macos-cmake (push) Waiting to run
Ubuntu Build and Test / ubuntu-make (push) Waiting to run
Ubuntu Build and Test / ubuntu-make-btaddon (push) Waiting to run
Ubuntu Build and Test / ubuntu-cmake (push) Waiting to run
Windows Build and Test / proxspace (push) Waiting to run
Windows Build and Test / wsl (push) Waiting to run
Some checks are pending
CodeQL / Analyze (push) Waiting to run
MacOS Build and Test / macos-make (push) Waiting to run
MacOS Build and Test / macos-make-btaddon (push) Waiting to run
MacOS Build and Test / macos-cmake (push) Waiting to run
Ubuntu Build and Test / ubuntu-make (push) Waiting to run
Ubuntu Build and Test / ubuntu-make-btaddon (push) Waiting to run
Ubuntu Build and Test / ubuntu-cmake (push) Waiting to run
Windows Build and Test / proxspace (push) Waiting to run
Windows Build and Test / wsl (push) Waiting to run
This commit is contained in:
parent
b6d826410d
commit
570b1fcc40
1 changed files with 1 additions and 1 deletions
|
@ -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) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue