source: libcfa/src/startup.hfa @ 095ac99

ADTarm-ehast-experimentalenumforall-pointer-decayjacob/cs343-translationjenkins-sandboxnew-astnew-ast-unique-exprpthread-emulationqualifiedEnum
Last change on this file since 095ac99 was 73abe95, checked in by Thierry Delisle <tdelisle@…>, 6 years ago

Replace extension-less headers with .hfa

  • Property mode set to 100644
File size: 944 bytes
Line 
1//
2// Cforall Version 1.0.0 Copyright (C) 2016 University of Waterloo
3//
4// The contents of this file are covered under the licence agreement in the
5// file "LICENCE" distributed with Cforall.
6//
7// startup.hfa --
8//
9// Author           : Thierry Delisle
10// Created On       : Wed Mar 29 15:56:41 2017
11// Last Modified By : Peter A. Buhr
12// Last Modified On : Tue Jul 24 16:16:37 2018
13// Update Count     : 4
14//
15
16#pragma once
17
18#if GCC_VERSION > 50000
19extern "C" {
20        enum {
21                STARTUP_PRIORITY_MEMORY     = 101,
22                STARTUP_PRIORITY_CORE       = 102,
23                STARTUP_PRIORITY_KERNEL     = 103,
24                STARTUP_PRIORITY_IOSTREAM   = 104,
25                STARTUP_PRIORITY_APPREADY   = 105,
26        };
27}
28#else
29#define STARTUP_PRIORITY_MEMORY     101
30#define STARTUP_PRIORITY_CORE       102
31#define STARTUP_PRIORITY_KERNEL     103
32#define STARTUP_PRIORITY_IOSTREAM   104
33#define STARTUP_PRIORITY_APPREADY   105
34#endif
35
36// Local Variables: //
37// mode: c //
38// tab-width: 4 //
39// End: //
Note: See TracBrowser for help on using the repository browser.