View | Details | Raw Unified | Return to bug 16255 | Differences between
and this patch

Collapse All | Expand All

(-)func/event/include/facility.h (-2 / +2 lines)
Lines 12-22 Link Here
12
created with the c++ API (Facility constructor).
12
created with the c++ API (Facility constructor).
13
-----------------------------------------------------------------------------*/
13
-----------------------------------------------------------------------------*/
14
14
15
const MAX_FACILITIES = 1000; // max number of facilities
15
const int MAX_FACILITIES = 1000; // max number of facilities
16
16
17
17
18
enum FacStatus {FREE, BUSY};
18
enum FacStatus {FREE, BUSY};
19
const MAX_FAC_NAME_LEN = 64;
19
const int MAX_FAC_NAME_LEN = 64;
20
const double MINUS_INFINITY = -1.0e77; // for debug during development
20
const double MINUS_INFINITY = -1.0e77; // for debug during development
21
21
22
/*=============================================================================
22
/*=============================================================================

Return to bug 16255