//
// 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 : Peter A. Buhr
// Last Modified On : Thu Jul 20 21:37:11 2017
// Update Count     : 2
//

#pragma once

#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

// Local Variables: //
// mode: c //
// tab-width: 4 //
// End: //
