(file) Return to error.h CVS log (file) (dir) Up to [XFree86 CVS] / xc / programs / xterm

Diff for /xc/programs/xterm/error.h between version 1.7 and 1.8

version 1.7, 2002/08/17 19:52:26 version 1.8, 2002/12/27 21:05:22
Line 3 
Line 3 
  */  */
  
  
 /* $XFree86: xc/programs/xterm/error.h,v 1.6 2001/01/17 23:46:36 dawes Exp $ */  /* $XFree86: xc/programs/xterm/error.h,v 1.7 2002/08/17 19:52:26 dickey Exp $ */
 /* /*
  * Copyright 1987 by Digital Equipment Corporation, Maynard, Massachusetts.  * Copyright 1987 by Digital Equipment Corporation, Maynard, Massachusetts.
  *  *
Line 28 
Line 28 
  */  */
  
 /* @(#)error.h  X10/6.6 11/6/86 */ /* @(#)error.h  X10/6.6 11/6/86 */
   
 /* main.c */ /* main.c */
 #define ERROR_KMALLOC   10      /* main: malloc() failed for keyboardtype */  
 #define ERROR_FIONBIO   11      /* main: ioctl() failed on FIONBIO */ #define ERROR_FIONBIO   11      /* main: ioctl() failed on FIONBIO */
   #define ERROR_F_GETFL   12      /* main: ioctl() failed on F_GETFL */
   #define ERROR_F_SETFL   13      /* main: ioctl() failed on F_SETFL */
 #define ERROR_OPDEVTTY  14      /* spawn: open() failed on /dev/tty */ #define ERROR_OPDEVTTY  14      /* spawn: open() failed on /dev/tty */
 #define ERROR_TIOCGETP  15      /* spawn: ioctl() failed on TIOCGETP */ #define ERROR_TIOCGETP  15      /* spawn: ioctl() failed on TIOCGETP */
 #define ERROR_TIOCGETC  16      /* spawn: ioctl() failed on TIOCGETC */  #define ERROR_PTSNAME   17      /* spawn: ptsname() failed */
 #define ERROR_TIOCGETD  17      /* spawn: ioctl() failed on TIOCGETD */  #define ERROR_OPPTSNAME 18      /* spawn: open() failed on ptsname */
 #define ERROR_TIOCGLTC  18      /* spawn: ioctl() failed on TIOCGLTC */  #define ERROR_PTEM      19      /* spawn: ioctl() failed on I_PUSH/"ptem" */
 #define ERROR_TIOCLGET  19      /* spawn: ioctl() failed on TIOCLGET */  #define ERROR_CONSEM    20      /* spawn: ioctl() failed on I_PUSH/"consem" */
 #define ERROR_TIOCCONS  20      /* spawn: ioctl() failed on TIOCCONS */  #define ERROR_LDTERM    21      /* spawn: ioctl() failed on I_PUSH/"ldterm" */
 #define ERROR_OPDEVTTY2 21      /* spawn: second open() failed on /dev/tty */  #define ERROR_TTCOMPAT  22      /* spawn: ioctl() failed on I_PUSH/"ttcompat" */
 #define ERROR_NOTTY     22      /* spawn: ioctl() failed on TIOCNOTTY */  
 #define ERROR_TIOCSETP  23      /* spawn: ioctl() failed on TIOCSETP */ #define ERROR_TIOCSETP  23      /* spawn: ioctl() failed on TIOCSETP */
 #define ERROR_TIOCSETC  24      /* spawn: ioctl() failed on TIOCSETC */ #define ERROR_TIOCSETC  24      /* spawn: ioctl() failed on TIOCSETC */
 #define ERROR_TIOCSETD  25      /* spawn: ioctl() failed on TIOCSETD */ #define ERROR_TIOCSETD  25      /* spawn: ioctl() failed on TIOCSETD */
 #define ERROR_TIOCSLTC  26      /* spawn: ioctl() failed on TIOCSLTC */ #define ERROR_TIOCSLTC  26      /* spawn: ioctl() failed on TIOCSLTC */
 #define ERROR_TIOCLSET  27      /* spawn: ioctl() failed on TIOCLSET */ #define ERROR_TIOCLSET  27      /* spawn: ioctl() failed on TIOCLSET */
   #define ERROR_INIGROUPS 28      /* spawn: initgroups() failed */
 #define ERROR_FORK      29      /* spawn: fork() failed */ #define ERROR_FORK      29      /* spawn: fork() failed */
 #define ERROR_EXEC      30      /* spawn: exec() failed */ #define ERROR_EXEC      30      /* spawn: exec() failed */
 #define ERROR_OPDEVTTY3 31      /* spawn: third open() failed on /dev/tty */  
 #define ERROR_PTYS      32      /* get_pty: not enough ptys */ #define ERROR_PTYS      32      /* get_pty: not enough ptys */
 #define ERROR_NOX       33      /* get_terminal: can't connect to server */  
 #define ERROR_PTY_EXEC  34      /* waiting for initial map */ #define ERROR_PTY_EXEC  34      /* waiting for initial map */
   #define ERROR_SETUID    35      /* spawn: setuid() failed */
 #define ERROR_INIT      36      /* spawn: can't initialize window */ #define ERROR_INIT      36      /* spawn: can't initialize window */
 #define ERROR_NOCO      37      /* resize: no `co' in termcap */  
 #define ERROR_NOLI      38      /* resize: no `li' in termcap */  
 #define ERROR_BORDER    39      /* get_terminal: can't make border tile */  
 #define ERROR_BACK      40      /* get_terminal: can't make background tile */  
 #define ERROR_NOX3      43      /* get_terminal: bad pty from display server */  
 #define ERROR_TIOCKGET  44      /* spawn: ioctl() failed on TIOCKGET */  
 #define ERROR_TIOCKGETC 45      /* spawn: ioctl() failed on TIOCKGETC */  
 #define ERROR_TIOCKSET  46      /* spawn: ioctl() failed on TIOCKSET */ #define ERROR_TIOCKSET  46      /* spawn: ioctl() failed on TIOCKSET */
 #define ERROR_TIOCKSETC 47      /* spawn: ioctl() failed on TIOCKSETC */ #define ERROR_TIOCKSETC 47      /* spawn: ioctl() failed on TIOCKSETC */
 #define ERROR_SPREALLOC 48      /* spawn: realloc of ttydev failed */ #define ERROR_SPREALLOC 48      /* spawn: realloc of ttydev failed */
Line 71 
Line 61 
 /* charproc.c */ /* charproc.c */
 #define ERROR_SELECT    50      /* in_put: select() failed */ #define ERROR_SELECT    50      /* in_put: select() failed */
 #define ERROR_VINIT     54      /* VTInit: can't initialize window */ #define ERROR_VINIT     54      /* VTInit: can't initialize window */
 #define ERROR_CNMALLOC1 55      /* Changename: malloc failed */  
 #define ERROR_CNMALLOC2 56      /* Changename: malloc failed */  
 #define ERROR_KMMALLOC1 57      /* HandleKeymapChange: malloc failed */ #define ERROR_KMMALLOC1 57      /* HandleKeymapChange: malloc failed */
 #define ERROR_VTREALLOC 58      /* VTParse: realloc failed */  
 /* Tekproc.c */ /* Tekproc.c */
 #define ERROR_TSELECT   60      /* Tinput: select() failed */ #define ERROR_TSELECT   60      /* Tinput: select() failed */
 #define ERROR_TINIT     64      /* TekInit: can't initialize window */ #define ERROR_TINIT     64      /* TekInit: can't initialize window */
 #define ERROR_TBACK     65      /* TekBackground: can't make background */  
 /* button.c */ /* button.c */
 #define ERROR_BMALLOC2  71      /* SaltTextAway: malloc() failed */ #define ERROR_BMALLOC2  71      /* SaltTextAway: malloc() failed */
  
 /* misc.c */ /* misc.c */
 #ifdef ALLOWLOGGING  
 #ifdef ALLOWLOGFILEEXEC  
 #define ERROR_LOGEXEC   80      /* StartLog: exec() failed */ #define ERROR_LOGEXEC   80      /* StartLog: exec() failed */
 #endif  
 #endif  
 #define ERROR_XERROR    83      /* xerror: XError event */ #define ERROR_XERROR    83      /* xerror: XError event */
 #define ERROR_XIOERROR  84      /* xioerror: X I/O error */ #define ERROR_XIOERROR  84      /* xioerror: X I/O error */
 #define ERROR_WINNAME   85      /* get_terminal: malloc failed */  
 /* screen.c */ /* screen.c */
 #define ERROR_SCALLOC   90      /* Alloc: calloc() failed on base */ #define ERROR_SCALLOC   90      /* Alloc: calloc() failed on base */
 #define ERROR_SCALLOC2  91      /* Alloc: calloc() failed on rows */ #define ERROR_SCALLOC2  91      /* Alloc: calloc() failed on rows */
 #define ERROR_SREALLOC  92      /* ScreenResize: realloc() failed on alt base */ #define ERROR_SREALLOC  92      /* ScreenResize: realloc() failed on alt base */
 #define ERROR_SREALLOC2 93      /* ScreenResize: realloc() failed on alt rows */  
 #define ERROR_SREALLOC3 94      /* ScreenResize: realloc() failed on rows */  
 #define ERROR_SREALLOC4 95      /* ScreenResize: realloc() failed on rows */  
 #define ERROR_RESIZE    96      /* ScreenResize: malloc() or realloc() failed */ #define ERROR_RESIZE    96      /* ScreenResize: malloc() or realloc() failed */
 #define ERROR_RESIZE2   97      /* ScreenResize: malloc() or realloc() failed */  
 #define ERROR_RESIZROW  98      /* ScreenResize: realloc() failed on alt char */  
 #define ERROR_RESIZROW2 99      /* ScreenResize: realloc() failed on alt attr */  
 #define ERROR_RESIZROW3 100     /* ScreenResize: realloc() failed on attr */  
 #define ERROR_RESIZROW4 101     /* ScreenResize: realloc() failed on attr */  
 #define ERROR_SAVE_PTR  102     /* ScrnPointers: malloc/realloc() failed */ #define ERROR_SAVE_PTR  102     /* ScrnPointers: malloc/realloc() failed */
   
 /* scrollbar.c */ /* scrollbar.c */
 #define ERROR_SBRALLOC  110     /* ScrollBarOn: realloc() failed on base */ #define ERROR_SBRALLOC  110     /* ScrollBarOn: realloc() failed on base */
 #define ERROR_SBRALLOC2 111     /* ScrollBarOn: realloc() failed on rows */ #define ERROR_SBRALLOC2 111     /* ScrollBarOn: realloc() failed on rows */
   
 /* util.c */ /* util.c */
 #define ERROR_UBACK     120     /* ReverseVideo: can't make background */  
 #define ERROR_MMALLOC   121     /* my_memmove: malloc/realloc failed */ #define ERROR_MMALLOC   121     /* my_memmove: malloc/realloc failed */


Legend:
Removed from v.1.7  
changed lines
  Added in v.1.8

Powered by
ViewCVS 0.9.2