Changes in libcfa/src/startup.cfa [ced5e2a:b443db0]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/startup.cfa
rced5e2a rb443db0 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.