home *** CD-ROM | disk | FTP | other *** search
/ PC Extra Super CD 1998 January / PCPLUS131.iso / DJGPP / V2 / DJLSR201.ZIP / src / libc / posix / unistd / sysconf.txh < prev    next >
Encoding:
Text File  |  1995-07-23  |  707 b   |  32 lines

  1. @node sysconf, posix
  2. @subheading Syntax
  3.  
  4. @example
  5. #include <unistd.h>
  6.  
  7. long sysconf(int which);
  8. @end example
  9.  
  10. @subheading Description
  11.  
  12. This function returns various system configuration values, based on
  13. @var{which}:
  14.  
  15. @example
  16.   case _SC_ARG_MAX:    return ARG_MAX;
  17.   case _SC_CHILD_MAX:    return CHILD_MAX;
  18.   case _SC_CLK_TCK:    return CLOCKS_PER_SEC;
  19.   case _SC_NGROUPS_MAX:    return NGROUPS_MAX;
  20.   case _SC_OPEN_MAX:    return 255;
  21.   case _SC_JOB_CONTROL:    return -1;
  22.   case _SC_SAVED_IDS:    return -1;
  23.   case _SC_STREAM_MAX:    return _POSIX_STREAM_MAX;
  24.   case _SC_TZNAME_MAX:    return TZNAME_MAX;
  25.   case _SC_VERSION:    return _POSIX_VERSION;
  26. @end example
  27.  
  28. @subheading Return Value
  29.  
  30. The value.
  31.  
  32.