Print this page
8527 tty buffer/queue sizes should be larger

Split Close
Expand all
Collapse all
          --- old/usr/src/head/limits.h
          +++ new/usr/src/head/limits.h
↓ open down ↓ 65 lines elided ↑ open up ↑
  66   66   * like aux vectors, saved registers, etc..
  67   67   */
  68   68  #define _ARG_MAX32      1048320 /* max length of args to exec 32-bit program */
  69   69  #define _ARG_MAX64      2096640 /* max length of args to exec 64-bit program */
  70   70  #ifdef  _LP64
  71   71  #define ARG_MAX         _ARG_MAX64      /* max length of arguments to exec */
  72   72  #else   /* _LP64 */
  73   73  #define ARG_MAX         _ARG_MAX32      /* max length of arguments to exec */
  74   74  #endif  /* _LP64 */
  75   75  
       76 +
       77 +/*
       78 + * These two symbols have their historical values, the actual buffer is
       79 + * larger.
       80 + */
  76   81  #ifndef MAX_CANON
  77   82  #define MAX_CANON       256     /* max bytes in line for canonical processing */
  78   83  #endif
  79   84  
  80   85  #ifndef MAX_INPUT
  81   86  #define MAX_INPUT       512     /* max size of a char input buffer */
  82   87  #endif
  83   88  
  84   89  #define NGROUPS_MAX     16      /* max number of groups for a user */
  85   90  
↓ open down ↓ 249 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX