Skip to content
Snippets Groups Projects
Commit 0ac71672 authored by ram's avatar ram
Browse files

Solaris patches. Change some conditions from !defined everything to

mach.
parent 571df509
No related branches found
No related tags found
No related merge requests found
/* Routines that must be linked into the core for lisp to work. */ /* Routines that must be linked into the core for lisp to work. */
/* $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/lisp/undefineds.h,v 1.4 1994/07/05 16:11:04 hallgren Exp $ */ /* $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/lisp/undefineds.h,v 1.5 1994/10/25 00:26:53 ram Exp $ */
/* Pick up all the syscalls. */ /* Pick up all the syscalls. */
accept, accept,
...@@ -24,33 +24,37 @@ exit, ...@@ -24,33 +24,37 @@ exit,
fchmod, fchmod,
fchown, fchown,
fcntl, fcntl,
#ifndef hpux #if !defined(hpux) && !defined(SVR4)
flock, flock,
#endif #endif
fork, fork,
fstat, fstat,
fsync, fsync,
ftruncate, ftruncate,
#ifndef hpux #if !defined(hpux) && !defined(SVR4)
getdtablesize, getdtablesize,
#endif #endif
getegid, getegid,
geteuid, geteuid,
getgid, getgid,
getgroups, getgroups,
#ifndef SVR4
gethostid, gethostid,
#endif
gethostname, gethostname,
getitimer, getitimer,
#ifndef hpux #if !defined(hpux) && !defined(SVR4)
getpagesize, getpagesize,
#endif #endif
getpeername, getpeername,
getpgrp, getpgrp,
getpid, getpid,
getppid, getppid,
#ifndef SVR4
getpriority, getpriority,
#endif
getrlimit, getrlimit,
#ifndef hpux #if !defined(hpux) && !defined(SVR4)
getrusage, getrusage,
#endif #endif
getsockname, getsockname,
...@@ -59,7 +63,9 @@ gettimeofday, ...@@ -59,7 +63,9 @@ gettimeofday,
getuid, getuid,
ioctl, ioctl,
kill, kill,
#ifndef SVR4
killpg, killpg,
#endif
link, link,
listen, listen,
lseek, lseek,
...@@ -71,13 +77,15 @@ open, ...@@ -71,13 +77,15 @@ open,
pipe, pipe,
profil, profil,
ptrace, ptrace,
#if !defined(SUNOS) && !defined(parisc) && !defined(osf1) && !defined(irix) #ifdef mach
quota, quota,
#endif #endif
read, read,
readlink, readlink,
readv, readv,
#ifndef SVR4
reboot, reboot,
#endif
recv, recv,
recvfrom, recvfrom,
recvmsg, recvmsg,
...@@ -89,17 +97,21 @@ send, ...@@ -89,17 +97,21 @@ send,
sendmsg, sendmsg,
sendto, sendto,
setgroups, setgroups,
#ifndef SUNOS #if !defined(SUNOS) && !defined(SOLARIS)
sethostid, sethostid,
#endif #endif
#ifndef SVR4
sethostname, sethostname,
#endif
setitimer, setitimer,
setpgrp, setpgrp,
#ifndef SVR4
setpriority, setpriority,
#if !defined(SUNOS) && !defined(parisc) && !defined(osf1) && !defined(irix) #endif
#ifdef mach
setquota, setquota,
#endif #endif
#ifndef hpux #if !defined(hpux) && !defined(SVR4)
setregid, setregid,
setreuid, setreuid,
#endif #endif
...@@ -107,24 +119,28 @@ setrlimit, ...@@ -107,24 +119,28 @@ setrlimit,
setsockopt, setsockopt,
settimeofday, settimeofday,
shutdown, shutdown,
#ifndef SVR4
sigblock, sigblock,
#endif
sigpause, sigpause,
#if !defined(ibmrt) && !defined(hpux) && !defined(irix) #if !defined(ibmrt) && !defined(hpux) && !defined(SVR4)
sigreturn, sigreturn,
#endif #endif
#ifndef SVR4
sigsetmask, sigsetmask,
sigstack, sigstack,
sigvec, sigvec,
#endif
socket, socket,
socketpair, socketpair,
stat, stat,
#ifndef irix #ifndef SVR4
swapon, swapon,
#endif #endif
symlink, symlink,
sync, sync,
syscall, syscall,
#ifdef hpux #if defined(hpux) || defined(SVR4)
closedir, closedir,
opendir, opendir,
readdir, readdir,
...@@ -135,7 +151,7 @@ tcsetattr, ...@@ -135,7 +151,7 @@ tcsetattr,
#endif #endif
truncate, truncate,
umask, umask,
#if !defined(SUNOS) && !defined(parisc) #if !defined(SUNOS) && !defined(parisc) && !defined(SOLARIS)
umount, umount,
#endif #endif
unlink, unlink,
...@@ -149,7 +165,9 @@ vfork, ...@@ -149,7 +165,9 @@ vfork,
vhangup, vhangup,
#endif #endif
wait, wait,
#ifndef SVR4
wait3, wait3,
#endif
write, write,
writev, writev,
...@@ -190,7 +208,21 @@ gethostbyname, ...@@ -190,7 +208,21 @@ gethostbyname,
gethostbyaddr, gethostbyaddr,
/* Other random things. */ /* Other random things. */
#ifdef SVR4
setpgid,
getpgid,
timezone,
altzone,
daylight,
tzname,
dlopen,
dlsym,
dlclose,
dlerror,
#endif
#ifndef SVR4
getwd, getwd,
#endif
ttyname ttyname
#ifdef irix #ifdef irix
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment