Changeset a0dbf20 for libcfa/src/bits
- Timestamp:
- Aug 30, 2022, 6:30:32 PM (3 years ago)
- Branches:
- ADT, ast-experimental, master, pthread-emulation
- Children:
- 4858a88
- Parents:
- a8dd247 (diff), 01ba701 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - Location:
- libcfa/src/bits
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/bits/defs.hfa
ra8dd247 ra0dbf20 24 24 #define likely(x) __builtin_expect(!!(x), 1) 25 25 #define unlikely(x) __builtin_expect(!!(x), 0) 26 #define thread_local _Thread_local27 26 28 27 typedef void (*fptr_t)(); -
libcfa/src/bits/locks.hfa
ra8dd247 ra0dbf20 32 32 extern void disable_interrupts() OPTIONAL_THREAD; 33 33 extern void enable_interrupts( bool poll = true ) OPTIONAL_THREAD; 34 extern bool poll_interrupts() OPTIONAL_THREAD; 34 35 #define __cfaabi_dbg_record_lock(x, y) 35 36 }
Note:
See TracChangeset
for help on using the changeset viewer.