Changeset 7f6a7c9 for libcfa/src/startup.cfa
- Timestamp:
- Sep 21, 2022, 11:02:15 AM (3 years ago)
- Branches:
- ADT, ast-experimental, master, pthread-emulation
- Children:
- 95dab9e
- Parents:
- 428adbc (diff), 0bd46fd (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. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/startup.cfa
r428adbc r7f6a7c9 41 41 } // __cfaabi_appready_shutdown 42 42 43 void disable_interrupts() __attribute__(( weak )) libcfa_public {} 44 void enable_interrupts() __attribute__(( weak )) libcfa_public {} 43 void disable_interrupts() __attribute__(( weak )) libcfa_nopreempt libcfa_public {} 44 void enable_interrupts() __attribute__(( weak )) libcfa_nopreempt libcfa_public {} 45 bool poll_interrupts() __attribute__(( weak )) libcfa_nopreempt libcfa_public { return false; } 46 47 __attribute__((visibility("hidden"))) extern void * const __start_cfatext_nopreempt; 48 __attribute__((visibility("hidden"))) extern void * const __stop_cfatext_nopreempt; 49 50 __attribute__((visibility("protected"))) const __cfa_nopreempt_region __libcfa_nopreempt @= { 51 (void * const)&__start_cfatext_nopreempt, 52 (void * const)&__stop_cfatext_nopreempt 53 }; 45 54 46 55
Note:
See TracChangeset
for help on using the changeset viewer.