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.

15 lines
580 B

  1. /* Space Manager constants
  2. */
  3. #define cSecFrac 4 // divider of primary extent to get secondary
  4. // extent size, =cpgPrimary/cpgSecondary
  5. #define pgnoSysMax (1<<22) // maximum page number allowed in database
  6. extern LONG cpgSESysMin; // minimum secondary extent size, default is 16
  7. #define cpgSmallFDP 16 // count of owned pages below which an FDP
  8. // is considered small
  9. #define cpgSmallGrow 3 // minimum count of pages to grow a small FDP
  10. /* FUCB work area flags
  11. */
  12. #define fNone 0
  13. #define fSecondary 1
  14. #define fFreed 2