blob: 52aa70b110c1698d2cc6838a0988af24e97bdc5c [file] [log] [blame]
#ifndef VPR_EXIT_CODES_H
#define VPR_EXIT_CODES_H
/*
* Exit codes to signal success/failure to scripts
* calling vpr
*/
constexpr int SUCCESS_EXIT_CODE = 0; //Everything OK
constexpr int ERROR_EXIT_CODE = 1; //Something went wrong internally
constexpr int UNIMPLEMENTABLE_EXIT_CODE = 2; //Could not implement (e.g. unroutable)
constexpr int INTERRUPTED_EXIT_CODE = 3; //VPR was interrupted by the user (e.g. SIGINT/ctr-C)
#endif