Consistently use "superuser" instead of "super user"
[pgsql.git] / src / include / access / rmgr.h
blobc9b5c56a4c601535b9396d1ebeddeb2638225044
1 /*
2 * rmgr.h
4 * Resource managers definition
6 * src/include/access/rmgr.h
7 */
8 #ifndef RMGR_H
9 #define RMGR_H
11 typedef uint8 RmgrId;
14 * Built-in resource managers
16 * The actual numerical values for each rmgr ID are defined by the order
17 * of entries in rmgrlist.h.
19 * Note: RM_MAX_ID must fit in RmgrId; widening that type will affect the XLOG
20 * file format.
22 #define PG_RMGR(symname,name,redo,desc,identify,startup,cleanup,mask) \
23 symname,
25 typedef enum RmgrIds
27 #include "access/rmgrlist.h"
28 RM_NEXT_ID
29 } RmgrIds;
31 #undef PG_RMGR
33 #define RM_MAX_ID (RM_NEXT_ID - 1)
35 #endif /* RMGR_H */