Home | History | Annotate | Download | only in upstream-dlmalloc

Lines Matching refs:USE_LOCKS

112   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) || \
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
1524 #else /* USE_LOCKS */
1525 #endif /* USE_LOCKS */
1796 If USE_LOCKS is > 1, the definitions of lock routines here are
1804 #if !USE_LOCKS
1812 #if USE_LOCKS > 1
2045 #endif /* USE_LOCKS */
2561 If USE_LOCKS is defined, the "mutex" lock is acquired and released
2596 #if USE_LOCKS
2598 #endif /* USE_LOCKS */
2646 #if USE_LOCKS
2742 #if USE_LOCKS
2745 #else /* USE_LOCKS */
2755 #endif /* USE_LOCKS */
4590 #if USE_LOCKS