Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[mc] Move the stack as field of SafetyChecker and CommDetChecker
[simgrid.git] / src / mc / mc_exit.h
1 /* Copyright (c) 2015. The SimGrid Team.
2  * All rights reserved.                                                     */
3
4 /* This program is free software; you can redistribute it and/or modify it
5  * under the terms of the license (GNU LGPL) which comes with this package. */
6
7 #ifndef SIMGRID_MC_EXIT_HPP
8 #define SIMGRID_MC_EXIT_HPP
9
10 #define SIMGRID_MC_EXIT_SUCCESS  0
11 #define SIMGRID_MC_EXIT_SAFETY   1
12 #define SIMGRID_MC_EXIT_LIVENESS 2
13 #define SIMGRID_MC_EXIT_DEADLOCK 3
14 #define SIMGRID_MC_EXIT_NON_TERMINATION 4
15 #define SIMGRID_MC_EXIT_NON_DETERMINISM 5
16 #define SIMGRID_MC_EXIT_PROGRAM_CRASH 6
17
18 #define SIMGRID_MC_EXIT_ERROR         63
19
20 #endif