home *** CD-ROM | disk | FTP | other *** search
/ NeXTSTEP 3.2 (Developer) / NS_dev_3.2.iso / NextDeveloper / Headers / bsd / m68k / vmparam.h < prev   
Text File  |  1993-10-19  |  821b  |  40 lines

  1. /* 
  2.  * HISTORY
  3.  * 05-Mar-89  Avadis Tevanian, Jr. (avie) at NeXT
  4.  *    Make MAXDSIZ infinity.
  5.  *
  6.  * 12-Aug-87  John Seamons (jks) at NeXT
  7.  *    Ported to NeXT.
  8.  */ 
  9.  
  10. #ifndef    _M68K_VMPARAM_
  11. #define    _M68K_VMPARAM_ 1
  12.  
  13. #import <sys/resource.h>
  14.  
  15. #define    USRSTACK    0x04000000
  16.  
  17. /*
  18.  * Virtual memory related constants, all in bytes
  19.  */
  20. #ifndef DFLDSIZ
  21. #define    DFLDSIZ        (6*1024*1024)        /* initial data size limit */
  22. #endif
  23. #ifndef MAXDSIZ
  24. #define    MAXDSIZ        (RLIM_INFINITY)        /* max data size */
  25. #endif
  26. #ifndef    DFLSSIZ
  27. #define    DFLSSIZ        (512*1024)        /* initial stack size limit */
  28. #endif
  29. #ifndef    MAXSSIZ
  30. #define    MAXSSIZ        MAXDSIZ            /* max stack size */
  31. #endif
  32. #ifndef    DFLCSIZ
  33. #define DFLCSIZ        (0)            /* initial core size limit */
  34. #endif
  35. #ifndef    MAXCSIZ
  36. #define MAXCSIZ        (RLIM_INFINITY)        /* max core size */
  37. #endif    MAXCSIZ
  38.  
  39. #endif    _M68K_VMPARAM_
  40.