// -*- Mode: CFA -*- // // Cforall Version 1.0.0 Copyright (C) 2016 University of Waterloo // // The contents of this file are covered under the licence agreement in the // file "LICENCE" distributed with Cforall. // // startup.h -- // // Author : Thierry Delisle // Created On : Wed Mar 29 15:56:41 2017 // Last Modified By : // Last Modified On : // Update Count : 0 // #ifndef STARTUP_H #define STARTUP_H #if GCC_VERSION > 50000 extern "C" { enum { STARTUP_PRIORITY_CORE = 101, STARTUP_PRIORITY_KERNEL = 102, STARTUP_PRIORITY_MEMORY = 103, STARTUP_PRIORITY_IOSTREAM = 104, }; } #else #define STARTUP_PRIORITY_CORE 101 #define STARTUP_PRIORITY_KERNEL 102 #define STARTUP_PRIORITY_MEMORY 103 #define STARTUP_PRIORITY_IOSTREAM 104 #endif #endif //STARTUP_H