Changeset b067d9b for libcfa/src/startup.hfa
- Timestamp:
- Oct 29, 2019, 4:01:24 PM (6 years ago)
- Branches:
- ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- 773db65, 9421f3d8
- Parents:
- 7951100 (diff), 8364209 (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 moved
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/startup.hfa
r7951100 rb067d9b 5 5 // file "LICENCE" distributed with Cforall. 6 6 // 7 // startup.h --7 // startup.hfa -- 8 8 // 9 9 // Author : Thierry Delisle 10 10 // Created On : Wed Mar 29 15:56:41 2017 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : T hu Jul 20 21:37:11 201713 // Update Count : 212 // Last Modified On : Tue Jul 24 16:16:37 2018 13 // Update Count : 4 14 14 // 15 15 … … 19 19 extern "C" { 20 20 enum { 21 STARTUP_PRIORITY_ CORE= 101,22 STARTUP_PRIORITY_ KERNEL= 102,23 STARTUP_PRIORITY_ MEMORY= 103,21 STARTUP_PRIORITY_MEMORY = 101, 22 STARTUP_PRIORITY_CORE = 102, 23 STARTUP_PRIORITY_KERNEL = 103, 24 24 STARTUP_PRIORITY_IOSTREAM = 104, 25 STARTUP_PRIORITY_APPREADY = 105, 25 26 }; 26 27 } 27 28 #else 28 #define STARTUP_PRIORITY_ CORE10129 #define STARTUP_PRIORITY_ KERNEL10230 #define STARTUP_PRIORITY_ MEMORY10329 #define STARTUP_PRIORITY_MEMORY 101 30 #define STARTUP_PRIORITY_CORE 102 31 #define STARTUP_PRIORITY_KERNEL 103 31 32 #define STARTUP_PRIORITY_IOSTREAM 104 33 #define STARTUP_PRIORITY_APPREADY 105 32 34 #endif 33 35
Note:
See TracChangeset
for help on using the changeset viewer.