Searched defs:USE_LOCKS (Results 1 - 3 of 3) sorted by relevance

/external/python/cpython2/Modules/_ctypes/libffi/src/
H A Dclosures.c73 #define USE_LOCKS 1 macro
H A Ddlmalloc.c107 Thread-safety: NOT thread-safe unless USE_LOCKS defined
108 When USE_LOCKS is defined, each public call to malloc, free,
226 USE_LOCKS default: 0 (false)
515 #ifndef USE_LOCKS
516 #define USE_LOCKS 0 macro
517 #endif /* USE_LOCKS */
1426 #if USE_LOCKS
1500 #else /* USE_LOCKS */
1503 #endif /* USE_LOCKS */
1505 #if USE_LOCKS
[all...]
/external/dlmalloc/
H A Dmalloc.c112 Thread-safety: NOT thread-safe unless USE_LOCKS defined non-zero
113 When USE_LOCKS is defined, each public call to malloc, free,
262 USE_LOCKS default: 0 (false)
270 USE_SPIN_LOCKS default: 1 iff USE_LOCKS and spin locks available
587 #ifndef USE_LOCKS /* ensure true if spin or recursive locks set */
588 #define USE_LOCKS ((defined(USE_SPIN_LOCKS) && USE_SPIN_LOCKS != 0) || \ macro
590 #endif /* USE_LOCKS */
592 #if USE_LOCKS /* Spin locks for gcc >= 4.1, older gcc on x86, MSC >= 1310 */
605 #endif /* USE_LOCKS */
1494 #if USE_LOCKS
[all...]

Completed in 574 milliseconds