1.0.13.2: Removing UNIX-NAMESTRING, part 3 (sort of)
[sbcl.git] / contrib / sb-posix / constants.lisp
1 ;;; -*- Lisp -*-
2
3 ;;; This isn't really lisp, but it's definitely a source file.
4
5 ;;; first, the headers necessary to find definitions of everything
6 (#||#
7  "sys/types.h"
8  "sys/stat.h"
9  #-win32 "utime.h"
10  #-win32 "sys/socket.h"
11  #-win32 "sys/un.h"
12  #-win32 "netinet/in.h"
13  #-win32 "netinet/in_systm.h"
14  #-win32 "netinet/ip.h"
15  #-win32 "net/if.h"
16  #-win32 "netinet/tcp.h"
17  #-win32 "sys/mman.h"
18  #-win32 "sys/wait.h"
19  "fcntl.h"
20  #-win32 "netdb.h"
21  "errno.h"
22  "dirent.h" "signal.h"
23  #-win32 "pwd.h"
24  #-win32 "grp.h"
25  "unistd.h"
26  #-win32 "termios.h"
27  #-win32 "syslog.h")
28
29 ;;; then the stuff we're looking for
30 ((:integer af-inet "AF_INET" "IP Protocol family" t)
31
32  ;; KLUDGE: These types simply do not seem to exist on Windows,
33  ;; but we'll provide these anyways -- at least in a way that should
34  ;; match with stat.
35  (:type uid-t   #-win32 "uid_t"   #+win32 "short")
36  (:type gid-t   #-win32 "gid_t"   #+win32 "short")
37  (:type nlink-t #-win32 "nlink_t" #+win32 "short")
38
39  (:type pid-t "pid_t")
40  (:type ino-t "ino_t")
41
42  (:type time-t "time_t")
43  (:type dev-t "dev_t")
44
45  ;; signals
46  (:integer SIGHUP "SIGHUP" #+sb-doc "terminal line hangup." t)
47  (:integer SIGINT "SIGINT" #+sb-doc "interrupt program." t)
48  (:integer SIGQUIT "SIGQUIT" #+sb-doc "quit program." t)
49  (:integer SIGILL "SIGILL" #+sb-doc "illegal instruction." t)
50  (:integer SIGTRAP "SIGTRAP" #+sb-doc "trace trap." t)
51  (:integer SIGABRT "SIGABRT" #+sb-doc "abort program (formerly SIGIOT)." t)
52  (:integer SIGEMT "SIGEMT" #+sb-doc "emulate instruction executed." t)
53  (:integer SIGFPE "SIGFPE" #+sb-doc "floating-point exception." t)
54  (:integer SIGKILL "SIGKILL" #+sb-doc "kill program." t)
55  (:integer SIGBUS "SIGBUS" #+sb-doc "bus error." t)
56  (:integer SIGSEGV "SIGSEGV" #+sb-doc "segmentation violation." t)
57  (:integer SIGSYS "SIGSYS" #+sb-doc "non-existent system call invoked." t)
58  (:integer SIGPIPE "SIGPIPE" #+sb-doc "write on a pipe with no reader." t)
59  (:integer SIGALRM "SIGALRM" #+sb-doc "real-time timer expired." t)
60  (:integer SIGTERM "SIGTERM" #+sb-doc "software termination signal." t)
61  (:integer SIGURG "SIGURG" #+sb-doc "urgent condition present on socket." t)
62  (:integer SIGSTOP "SIGSTOP" #+sb-doc "stop (cannot be caught or ignored)." t)
63  (:integer SIGTSTP "SIGTSTP" #+sb-doc "stop signal generated from keyboard." t)
64  (:integer SIGCONT "SIGCONT" #+sb-doc "continue after stop." t)
65  (:integer SIGCHLD "SIGCHLD" #+sb-doc "child status has changed." t)
66  (:integer SIGTTIN "SIGTTIN"
67            #+sb-doc "background read attempted from control terminal." t)
68  (:integer SIGTTOU "SIGTTOU"
69            #+sb-doc "background write attempted to control terminal." t)
70  (:integer SIGIO "SIGIO"
71            #+sb-doc "I/O is possible on a descriptor (see fcntl(2))." t)
72  (:integer SIGXCPU "SIGXCPU"
73            #+sb-doc "cpu time limit exceeded (see setrlimit(2))." t)
74  (:integer SIGXFSZ "SIGXFSZ"
75            #+sb-doc "file size limit exceeded (see setrlimit(2))." t)
76  (:integer SIGVTALRM "SIGVTALRM"
77            #+sb-doc "virtual time alarm (see setitimer(2))." t)
78  (:integer SIGPROF "SIGPROF"
79            #+sb-doc "profiling timer alarm (see setitimer(2))." t)
80  (:integer SIGWINCH "SIGWINCH" #+sb-doc "Window size change." t)
81  (:integer SIGPWR "SIGPWR" #+sb-doc "Power failure." t)
82  (:integer SIGUSR1 "SIGUSR1" #+sb-doc "User defined signal 1." t)
83  (:integer SIGUSR2 "SIGUSR2" #+sb-doc "User defined signal 2." t)
84  (:integer SIGRTMIN "SIGRTMIN" #+sb-doc "Smallest real-time signal number." t)
85  (:integer SIGRTMAX "SIGRTMAX" #+sb-doc "Largest real-time signal number." t)
86
87  ;; error numbers
88  (:errno eperm "EPERM" nil t)
89  (:errno enoent "ENOENT" nil t)
90  (:errno esrch "ESRCH" nil t)
91  (:errno eintr "EINTR" nil t)
92  (:errno eio "EIO" nil t)
93  (:errno enxio "ENXIO" nil t)
94  (:errno e2big "E2BIG" nil t)
95  (:errno enoexec "ENOEXEC" nil t)
96  (:errno ebadf "EBADF" nil t)
97  (:errno echild "ECHILD" nil t)
98  (:errno eagain "EAGAIN" nil t)
99  (:errno enomem "ENOMEM" nil t)
100  (:errno eacces "EACCES" nil t)
101  (:errno efault "EFAULT" nil t)
102  (:errno enotblk "ENOTBLK" nil t)
103  (:errno ebusy "EBUSY" nil t)
104  (:errno eexist "EEXIST" nil t)
105  (:errno exdev "EXDEV" nil t)
106  (:errno enodev "ENODEV" nil t)
107  (:errno enotdir "ENOTDIR" nil t)
108  (:errno eisdir "EISDIR" nil t)
109  (:errno einval "EINVAL" nil t)
110  (:errno enfile "ENFILE" nil t)
111  (:errno emfile "EMFILE" nil t)
112  (:errno enotty "ENOTTY" nil t)
113  (:errno etxtbsy "ETXTBSY" nil t)
114  (:errno efbig "EFBIG" nil t)
115  (:errno enospc "ENOSPC" nil t)
116  (:errno espipe "ESPIPE" nil t)
117  (:errno erofs "EROFS" nil t)
118  (:errno emlink "EMLINK" nil t)
119  (:errno epipe "EPIPE" nil t)
120  (:errno edom "EDOM" nil t)
121  (:errno erange "ERANGE" nil t)
122  (:errno edeadlk "EDEADLK" nil t)
123  (:errno enametoolong "ENAMETOOLONG" nil t)
124  (:errno enolck "ENOLCK" nil t)
125  (:errno enosys "ENOSYS" nil t)
126  (:errno enotempty "ENOTEMPTY" nil t)
127  (:errno eloop "ELOOP" nil t)
128  (:errno ewouldblock "EWOULDBLOCK" nil t)
129  (:errno enomsg "ENOMSG" nil t)
130  (:errno eidrm "EIDRM" nil t)
131  (:errno echrng "ECHRNG" nil t)
132  (:errno el2nsync "EL2NSYNC" nil t)
133  (:errno el3hlt "EL3HLT" nil t)
134  (:errno el3rst "EL3RST" nil t)
135  (:errno elnrng "ELNRNG" nil t)
136  (:errno eunatch "EUNATCH" nil t)
137  (:errno enocsi "ENOCSI" nil t)
138  (:errno el2hlt "EL2HLT" nil t)
139  (:errno ebade "EBADE" nil t)
140  (:errno ebadr "EBADR" nil t)
141  (:errno exfull "EXFULL" nil t)
142  (:errno enoano "ENOANO" nil t)
143  (:errno ebadrqc "EBADRQC" nil t)
144  (:errno ebadslt "EBADSLT" nil t)
145  (:errno edeadlock "EDEADLOCK" nil t)
146  (:errno ebfont "EBFONT" nil t)
147  (:errno enostr "ENOSTR" nil t)
148  (:errno enodata "ENODATA" nil t)
149  (:errno etime "ETIME" nil t)
150  (:errno enosr "ENOSR" nil t)
151  (:errno enonet "ENONET" nil t)
152  (:errno enopkg "ENOPKG" nil t)
153  (:errno eremote "EREMOTE" nil t)
154  (:errno enolink "ENOLINK" nil t)
155  (:errno eadv "EADV" nil t)
156  (:errno esrmnt "ESRMNT" nil t)
157  (:errno ecomm "ECOMM" nil t)
158  (:errno eproto "EPROTO" nil t)
159  (:errno emultihop "EMULTIHOP" nil t)
160  (:errno edotdot "EDOTDOT" nil t)
161  (:errno ebadmsg "EBADMSG" nil t)
162  (:errno eoverflow "EOVERFLOW" nil t)
163  (:errno enotuniq "ENOTUNIQ" nil t)
164  (:errno ebadfd "EBADFD" nil t)
165  (:errno eremchg "EREMCHG" nil t)
166  (:errno elibacc "ELIBACC" nil t)
167  (:errno elibbad "ELIBBAD" nil t)
168  (:errno elibscn "ELIBSCN" nil t)
169  (:errno elibmax "ELIBMAX" nil t)
170  (:errno elibexec "ELIBEXEC" nil t)
171  (:errno eilseq "EILSEQ" nil t)
172  (:errno erestart "ERESTART" nil t)
173  (:errno estrpipe "ESTRPIPE" nil t)
174  (:errno eusers "EUSERS" nil t)
175  (:errno enotsock "ENOTSOCK" nil t)
176  (:errno edestaddrreq "EDESTADDRREQ" nil t)
177  (:errno emsgsize "EMSGSIZE" nil t)
178  (:errno eprototype "EPROTOTYPE" nil t)
179  (:errno enoprotoopt "ENOPROTOOPT" nil t)
180  (:errno eprotonosupport "EPROTONOSUPPORT" nil t)
181  (:errno esocktnosupport "ESOCKTNOSUPPORT" nil t)
182  (:errno eopnotsupp "EOPNOTSUPP" nil t)
183  (:errno epfnosupport "EPFNOSUPPORT" nil t)
184  (:errno eafnosupport "EAFNOSUPPORT" nil t)
185  (:errno eaddrinuse "EADDRINUSE" nil t)
186  (:errno eaddrnotavail "EADDRNOTAVAIL" nil t)
187  (:errno enetdown "ENETDOWN" nil t)
188  (:errno enetunreach "ENETUNREACH" nil t)
189  (:errno enetreset "ENETRESET" nil t)
190  (:errno econnaborted "ECONNABORTED" nil t)
191  (:errno econnreset "ECONNRESET" nil t)
192  (:errno enobufs "ENOBUFS" nil t)
193  (:errno eisconn "EISCONN" nil t)
194  (:errno enotconn "ENOTCONN" nil t)
195  (:errno eshutdown "ESHUTDOWN" nil t)
196  (:errno etoomanyrefs "ETOOMANYREFS" nil t)
197  (:errno etimedout "ETIMEDOUT" nil t)
198  (:errno econnrefused "ECONNREFUSED" nil t)
199  (:errno ehostdown "EHOSTDOWN" nil t)
200  (:errno ehostunreach "EHOSTUNREACH" nil t)
201  (:errno ealready "EALREADY" nil t)
202  (:errno einprogress "EINPROGRESS" nil t)
203  (:errno estale "ESTALE" nil t)
204  (:errno euclean "EUCLEAN" nil t)
205  (:errno enotnam "ENOTNAM" nil t)
206  (:errno enavail "ENAVAIL" nil t)
207  (:errno eremoteio "EREMOTEIO" nil t)
208  (:errno edquot "EDQUOT" nil t)
209  (:errno enomedium "ENOMEDIUM" nil t)
210  (:errno emediumtype "EMEDIUMTYPE" nil t)
211
212  ;; wait
213  (:integer wnohang "WNOHANG")
214  (:integer wuntraced "WUNTRACED")
215
216  ;; mode_t
217  (:type mode-t "mode_t")
218  (:integer s-ifmt "S_IFMT" nil t)
219  (:integer s-ififo "S_IFIFO" nil t)
220  (:integer s-ifchr "S_IFCHR" nil t)
221  (:integer s-ifdir "S_IFDIR" nil t)
222  (:integer s-ifblk "S_IFBLK" nil t)
223  (:integer s-ifreg "S_IFREG" nil t)
224  (:integer s-iflnk "S_IFLNK" nil t)
225  (:integer s-ifsock "S_IFSOCK" nil t)
226  (:integer s-ifwht "S_IFWHT" nil t)
227  (:integer s-isuid "S_ISUID" nil t)
228  (:integer s-isgid "S_ISGID" nil t)
229  (:integer s-isvtx "S_ISVTX" nil t)
230  (:integer s-irusr "S_IRUSR" nil t)
231  (:integer s-iwusr "S_IWUSR" nil t)
232  (:integer s-ixusr "S_IXUSR" nil t)
233  (:integer s-iread "S_IRUSR" nil t)
234  (:integer s-iwrite "S_IWUSR" nil t)
235  (:integer s-iexec "S_IXUSR" nil t)
236  (:integer s-irgrp "S_IRGRP" nil t)
237  (:integer s-iwgrp "S_IWGRP" nil t)
238  (:integer s-ixgrp "S_IXGRP" nil t)
239  (:integer s-iroth "S_IROTH" nil t)
240  (:integer s-iwoth "S_IWOTH" nil t)
241  (:integer s-ixoth "S_IXOTH" nil t)
242
243  ;; access()
244  (:integer r-ok "R_OK" nil t)
245  (:integer w-ok "W_OK" nil t)
246  (:integer x-ok "X_OK" nil t)
247  (:integer f-ok "F_OK" nil t)
248
249  ;; mmap()
250  (:type off-t "off_t")
251  (:integer prot-none "PROT_NONE" #+sb-doc "mmap: no protection" t)
252  (:integer prot-read "PROT_READ" #+sb-doc "mmap: read protection" t)
253  (:integer prot-write "PROT_WRITE" #+sb-doc "mmap: write protection" t)
254  (:integer prot-exec "PROT_EXEC" #+sb-doc "mmap: execute protection" t)
255  (:integer map-shared "MAP_SHARED" #+sb-doc "mmap: shared memory" t)
256  (:integer map-private "MAP_PRIVATE" #+sb-doc "mmap: private mapping" t)
257  (:integer map-fixed "MAP_FIXED" #+sb-doc "mmap: map at given location" t)
258
259  ;; msync()
260  (:integer ms-async "MS_ASYNC" #+sb-doc "msync: return immediately" t)
261  (:integer ms-sync "MS_SYNC" #+sb-doc "msync: perform synchronous writes" t)
262  (:integer ms-invalidate "MS_INVALIDATE"
263            #+sb-doc "msync: invalidate all cached data" t)
264
265  ;; opendir()
266  (:structure dirent
267              (#+(and linux largefile) "struct dirent64"
268               #-(and linux largefile) "struct dirent"
269               (:c-string name "char *" "d_name"
270                          :distrust-length #+sunos t #-sunos nil)) t)
271
272  ;; password database
273  #-win32
274  (:structure alien-passwd
275              ("struct passwd"
276               (c-string-pointer name "char *" "pw_name")
277               (c-string-pointer passwd "char *" "pw_passwd")
278               (uid-t uid "uid_t" "pw_uid")
279               (gid-t gid "gid_t" "pw_gid")
280               ;; 'change', 'class', and 'expire' are not supported on Linux
281               #+nil
282               (time-t change "time_t" "pw_change")
283               #+nil
284               (c-string-pointer class "char *" "pw_class")
285               (c-string-pointer gecos "char *" "pw_gecos")
286               (c-string-pointer dir "char *" "pw_dir")
287               (c-string-pointer shell "char *" "pw_shell")
288               #+nil
289               (time-t expire "time_t" "pw_expire")
290               ;; OS X manpages say this exists.  they lie!
291               #+nil
292               (:integer fields "int" "pw_fields")))
293
294  ;; group database
295  #-win32
296  (:structure alien-group
297              ("struct group"
298               (c-string-pointer name "char *" "gr_name")
299               (c-string-pointer passwd "char *" "gr_passwd")
300               (gid-t gid "gid_t" "gr_gid")))
301
302  (:structure alien-stat
303              ("struct stat"
304               (mode-t mode "mode_t" "st_mode")
305               (ino-t ino "ino_t" "st_ino")
306               ;; Linux/MIPS uses unsigned long instead of dev_t here.
307               #-mips
308               (dev-t dev "dev_t" "st_dev")
309               #+mips
310               ((unsigned 32) dev "dev_t" "st_dev")
311               (nlink-t nlink "nlink_t" "st_nlink")
312               (uid-t uid "uid_t" "st_uid")
313               (gid-t gid "gid_t" "st_gid")
314               (off-t size "off_t" "st_size")
315               (time-t atime "time_t" "st_atime")
316               (time-t mtime "time_t" "st_mtime")
317               (time-t ctime "time_t" "st_ctime")))
318
319  #+darwin
320  (:structure alien-timespec
321              ("struct timespec"
322               (time-t tv-sec "time_t" "tv_sec")
323               (long tv-nsec "long" "tv_nsec")))
324
325  ;; open()
326  (:integer o-rdonly "O_RDONLY" nil t)
327  (:integer o-wronly "O_WRONLY" nil t)
328  (:integer o-rdwr "O_RDWR" nil t)
329  (:integer o-creat "O_CREAT" nil t)
330  (:integer o-excl "O_EXCL" nil t)
331  (:integer o-noctty "O_NOCTTY" nil t)
332  (:integer o-trunc "O_TRUNC" nil t)
333  (:integer o-append "O_APPEND" nil t)
334  (:integer o-nonblock "O_NONBLOCK" nil t)
335  (:integer o-ndelay "O_NDELAY" nil t)
336  (:integer o-sync "O_SYNC" nil t)
337  (:integer o-nofollow "O_NOFOLLOW" nil t)
338  (:integer o-directory "O_DIRECTORY" nil t)
339  (:integer o-direct "O_DIRECT" nil t)
340  (:integer o-async "O_ASYNC" nil t)
341  (:integer o-largefile "O_LARGEFILE" nil t)     ; hmm...
342  (:integer o-dsync "O_DSYNC" nil t)
343  (:integer o-rsync "O_RSYNC" nil t)
344
345  ;; lseek()
346  (:integer seek-set "SEEK_SET" nil t)
347  (:integer seek-cur "SEEK_CUR" nil t)
348  (:integer seek-end "SEEK_END" nil t)
349
350  ;; fcntl()
351  (:integer f-dupfd "F_DUPFD" nil t)
352  (:integer f-getfd "F_GETFD" nil t)
353  (:integer f-setfd "F_SETFD" nil t)
354  (:integer f-getfl "F_GETFL" nil t)
355  (:integer f-setfl "F_SETFL" nil t)
356  (:integer f-getlk "F_GETLK" nil t)
357  (:integer f-setlk "F_SETLK" nil t)
358  (:integer f-setlkw "F_SETLKW" nil t)
359  (:integer f-getown "F_GETOWN" nil t)
360  (:integer f-setown "F_SETOWN" nil t)
361
362  ;; lockf()
363  (:integer f-lock "F_LOCK" nil t)
364  (:integer f-tlock "F_TLOCK" nil t)
365  (:integer f-ulock "F_ULOCK" nil t)
366  (:integer f-test "F_TEST" nil t)
367
368  ;; tcgetattr(), tcsetattr()
369  #-win32
370  (:type cc-t "cc_t")
371  #-win32
372  (:type speed-t "speed_t" nil t)
373  #-win32
374  (:type tcflag-t "tcflag_t" nil t)
375  (:integer nccs "NCCS" nil t)
376  #-win32
377  (:structure alien-termios
378              ("struct termios"
379               (tcflag-t iflag "tcflag_t" "c_iflag")
380               (tcflag-t oflag "tcflag_t" "c_oflag")
381               (tcflag-t cflag "tcflag_t" "c_cflag")
382               (tcflag-t lflag "tcflag_t" "c_lflag")
383               ((array cc-t) cc "cc_t" "c_cc")))
384
385  ;; utime(), utimes()
386  #-win32
387  (:type suseconds-t ; OAOOM warning: similar kludge in tools-for-build
388         #+os-provides-suseconds-t "suseconds_t"
389         #-os-provides-suseconds-t "long")
390
391  #-win32
392  (:structure alien-utimbuf
393              ("struct utimbuf"
394               (time-t actime "time_t" "actime")
395               (time-t modtime "time_t" "modtime")))
396  #-win32
397  (:structure alien-timeval
398              ("struct timeval"
399               (time-t sec "time_t" "tv_sec")
400               (suseconds-t usec "suseconds_t" "tv_usec")))
401
402  (:integer veof "VEOF" nil t)
403  (:integer veol "VEOL" nil t)
404  (:integer verase "VERASE" nil t)
405  (:integer vintr "VINTR" nil t)
406  (:integer vkill "VKILL" nil t)
407  (:integer vmin "VMIN" nil t)
408  (:integer vquit "VQUIT" nil t)
409  (:integer vstart "VSTART" nil t)
410  (:integer vstop "VSTOP" nil t)
411  (:integer vsusp "VSUSP" nil t)
412  (:integer vtime "VTIME" nil t)
413
414  (:integer brkint "BRKINT" nil t)
415  (:integer icrnl "ICRNL" nil t)
416  (:integer ignbrk "IGNBRK" nil t)
417  (:integer igncr "IGNCR" nil t)
418  (:integer ignpar "IGNPAR" nil t)
419  (:integer inlcr "INLCR" nil t)
420  (:integer inpck "INPCK" nil t)
421  (:integer istrip "ISTRIP" nil t)
422  #+xsi                               ; FIXME: an extension, apparently
423  (:integer ixany "IXANY" nil t)
424  (:integer ixoff "IXOFF" nil t)
425  (:integer ixon "IXON" nil t)
426  (:integer parmrk "PARMRK" nil t)
427
428  (:integer opost "OPOST" nil t)
429  #+xsi
430  (:integer onlcr "ONLCR" nil t)
431  (:integer ocrnl "OCRNL" nil t)
432  (:integer onlret "ONLRET" nil t)
433  (:integer ofill "OFILL" nil t)
434  (:integer nldly "NLDLY" nil t)
435  (:integer nl0 "NL0" nil t)
436  (:integer nl1 "NL1" nil t)
437  (:integer crdly "CRDLY" nil t)
438  (:integer cr0 "CR0" nil t)
439  (:integer cr1 "CR1" nil t)
440  (:integer cr2 "CR2" nil t)
441  (:integer cr3 "CR3" nil t)
442  (:integer tabdly "TABDLY" nil t)
443  (:integer tab0 "TAB0" nil t)
444  (:integer tab1 "TAB1" nil t)
445  (:integer tab2 "TAB2" nil t)
446  (:integer tab3 "TAB3" nil t)
447  (:integer bsdly "BSDLY" nil t)
448  (:integer bs0 "BS0" nil t)
449  (:integer bs1 "BS1" nil t)
450  (:integer vtdly "VTDLY" nil t)
451  (:integer vt0 "VT0" nil t)
452  (:integer vt1 "VT1" nil t)
453  (:integer ffdly "FFDLY" nil t)
454  (:integer ff0 "FF0" nil t)
455  (:integer ff1 "FF1" nil t)
456
457  (:integer b0 "B0" nil t)
458  (:integer b50 "B50" nil t)
459  (:integer b75 "B75" nil t)
460  (:integer b110 "B110" nil t)
461  (:integer b134 "B134" nil t)
462  (:integer b150 "B150" nil t)
463  (:integer b200 "B200" nil t)
464  (:integer b300 "B300" nil t)
465  (:integer b600 "B600" nil t)
466  (:integer b1200 "B1200" nil t)
467  (:integer b1800 "B1800" nil t)
468  (:integer b2400 "B2400" nil t)
469  (:integer b4800 "B4800" nil t)
470  (:integer b9600 "B9600" nil t)
471  (:integer b19200 "B19200" nil t)
472  (:integer b38400 "B38400" nil t)
473  (:integer b57600 "B57600" nil t)
474  (:integer b115200 "B115200" nil t)
475  (:integer b230400 "B230400" nil t)
476
477  (:integer csize "CSIZE" nil t)
478  (:integer cs5 "CS5" nil t)
479  (:integer cs6 "CS6" nil t)
480  (:integer cs7 "CS7" nil t)
481  (:integer cs8 "CS8" nil t)
482  (:integer cstopb "CSTOPB" nil t)
483  (:integer cread "CREAD" nil t)
484  (:integer parenb "PARENB" nil t)
485  (:integer parodd "PARODD" nil t)
486  (:integer hupcl "HUPCL" nil t)
487  (:integer clocal "CLOCAL" nil t)
488
489  (:integer echo "ECHO" nil t)
490  (:integer echoe "ECHOE" nil t)
491  (:integer echok "ECHOK" nil t)
492  (:integer echonl "ECHONL" nil t)
493  (:integer icanon "ICANON" nil t)
494  (:integer iexten "IEXTEN" nil t)
495  (:integer isig "ISIG" nil t)
496  (:integer noflsh "NOFLSH" nil t)
497  (:integer tostop "TOSTOP" nil t)
498
499  (:integer tcsanow "TCSANOW" nil t)
500  (:integer tcsadrain "TCSADRAIN" nil t)
501  (:integer tcsaflush "TCSAFLUSH" nil t)
502
503  (:integer tciflush "TCIFLUSH" nil t)
504  (:integer tcioflush "TCIOFLUSH" nil t)
505  (:integer tcoflush "TCOFLUSH" nil t)
506  (:integer tcioff "TCIOFF" nil t)
507  (:integer tcion "TCION" nil t)
508  (:integer tcooff "TCOOFF" nil t)
509  (:integer tcoon "TCOON" nil t)
510
511  ;; syslog -- does this exist at all on Windows?
512
513  ;; SUSv3-standard openlog() facilities
514  #-win32
515  (:integer log-user "LOG_USER" "Default openlog() faclity." t)
516  #-win32
517  (:integer log-local0 "LOG_LOCAL0" "Locally-defined openlog() facility" t)
518  #-win32
519  (:integer log-local1 "LOG_LOCAL1" "Locally-defined openlog() facility" t)
520  #-win32
521  (:integer log-local2 "LOG_LOCAL2" "Locally-defined openlog() facility" t)
522  #-win32
523  (:integer log-local3 "LOG_LOCAL3" "Locally-defined openlog() facility" t)
524  #-win32
525  (:integer log-local4 "LOG_LOCAL4" "Locally-defined openlog() facility" t)
526  #-win32
527  (:integer log-local5 "LOG_LOCAL5" "Locally-defined openlog() facility" t)
528  #-win32
529  (:integer log-local6 "LOG_LOCAL6" "Locally-defined openlog() facility" t)
530  #-win32
531  (:integer log-local7 "LOG_LOCAL7" "Locally-defined openlog() facility" t)
532
533  ;; Additional, non-standard openlog() facilities (most of which
534  ;; probably won't be needed by Lisp programs, but here for
535  ;; completeness).
536  #-win32
537  (:integer
538   log-authpriv "LOG_AUTHPRIV" "openlog() facility for authorization messages" t)
539  #-win32
540  (:integer
541   log-cron "LOG_CRON" "openlog() facility for cron and at daemons" t)
542  #-win32
543  (:integer
544   log-daemon "LOG_DAEMON" "openlog() facility for arbitrary daemons" t)
545  #-win32
546  (:integer
547   log-ftp "LOG_FTP" "openlog() facility for FTP daemons" t)
548  #-win32
549  (:integer
550   log-kern "LOG_KERN" "openlog() facility for kernel messages" t)
551  #-win32
552  (:integer
553   log-lpr "LOG_LPR" "openlog() facility for the printer subsystem" t)
554  #-win32
555  (:integer
556   log-mail "LOG_MAIL" "openlog() facility for the mail subsystem" t)
557  #-win32
558  (:integer
559   log-news "LOG_NEWS" "openlog() facility for the usenet subsystem" t)
560  #-win32
561  (:integer
562   log-syslog "LOG_SYSLOG" "openlog() facility for the syslog subsystem" t)
563  #-win32
564  (:integer
565   log-uucp "LOG_UUCP" "openlog() facility for the UUCP subsystem" t)
566
567  ;; openlog() options
568  #-win32
569  (:integer
570   log-pid "LOG_PID"
571   "If supplied to openlog(), log the process ID with each message"
572   t)
573  #-win32
574  (:integer
575   log-cons "LOG_CONS"
576   "If supplied to openlog(), log to the system console as well as logfiles"
577   t)
578  #-win32
579  (:integer
580   log-ndelay "LOG_NDELAY"
581   "If supplied to openlog(), immediately open the syslog connection."
582   t)
583  #-win32
584  (:integer
585   log-odelay "LOG_ODELAY"
586   "If supplied to openlog(), delay opening the syslog connection to the first syslog() call."
587   t)
588  #-win32
589  (:integer
590   log-nowait "LOG_NOWAIT"
591   "If supplied to openlog(), do not wait for child processes created by calls to syslog()."
592   t)
593  ;; Not in SUSv3, but at least Glibc and BSD libc have this
594  #-win32
595  (:integer
596   log-perror "LOG_PERROR"
597   "If supplied to openlog(), write log messages to the process's standard error descriptor in addition to the logging facility."
598   t)
599
600  ;; syslog() severity levels
601  #-win32
602  (:integer
603   log-emerg "LOG_EMERG" "Log severity level denoting a panic." t)
604  #-win32
605  (:integer
606   log-alert "LOG_ALERT" "Log severity level denoting a condition that should be corrected immediately." t)
607  #-win32
608  (:integer
609   log-crit "LOG_CRIT" "Log severity level denoting critical conditions." t)
610  #-win32
611  (:integer
612   log-err "LOG_ERR" "Log severity level denoting an error." t)
613  #-win32
614  (:integer
615   log-warning "LOG_WARNING" "Log severity level denoting a warning." t)
616  #-win32
617  (:integer
618   log-notice "LOG_NOTICE" "Log severity level denoting non-errors that may require special handling." t)
619  #-win32
620  (:integer
621   log-info "LOG_INFO" "Log severity level denoting informational messages." t)
622  #-win32
623  (:integer
624   log-debug "LOG_DEBUG" "Log severity level denoting debugging information ." t)
625
626 )