Leaked source code of windows server 2003
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
/* Space Manager constants
*/ #define cSecFrac 4 // divider of primary extent to get secondary
// extent size, =cpgPrimary/cpgSecondary
#define pgnoSysMax (1<<22) // maximum page number allowed in database
extern LONG cpgSESysMin; // minimum secondary extent size, default is 16
#define cpgSmallFDP 16 // count of owned pages below which an FDP
// is considered small
#define cpgSmallGrow 3 // minimum count of pages to grow a small FDP
/* FUCB work area flags
*/ #define fNone 0
#define fSecondary 1
#define fFreed 2
|