#ifndef _ERROR_CODES_HH_ #define _ERROR_CODES_HH_ typedef int ErrType; #ifndef SUCCESS #define SUCCESS 0 #endif #ifndef ERROR #define ERROR 1 #endif #define NO_PREFETCH 2 #define NO_DIRECT 3 #define NOT_IMPLEMENTED 4 #endif /* _ERROR_CODES_HH_ */