1995-10-13 23:34:21 -04:00
|
|
|
/* Scheme48/scsh Unix system interface.
|
|
|
|
** Routines that require custom C support.
|
|
|
|
** Copyright (c) 1993,1994 by Olin Shivers.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "sysdep.h"
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <sys/signal.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/times.h>
|
|
|
|
#include <sys/time.h>
|
|
|
|
#include <fcntl.h> /* for O_RDWR */
|
|
|
|
#include <sys/stat.h>
|
1996-09-26 16:18:35 -04:00
|
|
|
|
1995-10-13 23:34:21 -04:00
|
|
|
#include <netdb.h>
|
1996-09-26 16:18:35 -04:00
|
|
|
/* This losage brought to you by Solaris and BIND */
|
|
|
|
/* We thank Solaris for forcing users to get a new BIND */
|
|
|
|
/* We thank BIND for blowing away the Solaris includea for MAXHOSTNAMELEN */
|
|
|
|
#ifndef MAXHOSTNAMELEN
|
|
|
|
#include <arpa/nameser.h>
|
|
|
|
#ifndef MAXHOSTNAMELEN
|
|
|
|
#define MAXHOSTNAMELEN MAXDNAME
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
1995-10-13 23:34:21 -04:00
|
|
|
#include <pwd.h>
|
|
|
|
#include <sys/param.h> /* For gethostname() */
|
|
|
|
#include <errno.h>
|
|
|
|
#include <sys/wait.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <string.h>
|
1995-10-21 08:07:25 -04:00
|
|
|
#include <utime.h>
|
1995-10-13 23:34:21 -04:00
|
|
|
|
|
|
|
#include "cstuff.h"
|
1995-10-26 09:34:33 -04:00
|
|
|
#include "machine/stdio_dep.h"
|
1995-10-13 23:34:21 -04:00
|
|
|
|
1995-10-22 08:34:53 -04:00
|
|
|
/* Make sure our exports match up w/the implementation: */
|
|
|
|
#include "syscalls1.h"
|
|
|
|
|
1995-10-13 23:34:21 -04:00
|
|
|
extern int errno;
|
|
|
|
extern char **environ;
|
|
|
|
|
1995-10-21 08:07:25 -04:00
|
|
|
/* Sux because it's dependent on 32-bitness. */
|
|
|
|
#define hi8(i) (((i)>>24) & 0xff)
|
|
|
|
#define lo24(i) ((i) & 0xffffff)
|
|
|
|
#define comp8_24(hi, lo) (((hi)<<24) + (lo))
|
|
|
|
|
|
|
|
|
1995-10-13 23:34:21 -04:00
|
|
|
/* Process stuff
|
|
|
|
*******************************************************************************
|
|
|
|
** wait, exec
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* Args: pid, flags; returns [retval, status] */
|
|
|
|
|
|
|
|
scheme_value wait_pid(int pid, int flags, int *result_pid, int *status)
|
|
|
|
{
|
|
|
|
*result_pid = waitpid(pid, status, flags);
|
|
|
|
return (*result_pid == -1) ? ENTER_FIXNUM(errno) : SCHFALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* env: Scheme vector of Scheme strings, e.g., #("TERM=vt100" ...) or #T.
|
|
|
|
** argv: Scheme vector of Scheme strings.
|
|
|
|
** prog: String.
|
|
|
|
**
|
|
|
|
** We don't typecheck the args. You must do the typechecking
|
|
|
|
** on the Scheme side.
|
|
|
|
*/
|
|
|
|
|
1995-10-22 08:34:53 -04:00
|
|
|
int scheme_exec(const char *prog, scheme_value argv, scheme_value env)
|
1995-10-13 23:34:21 -04:00
|
|
|
{
|
|
|
|
int i, j, e;
|
|
|
|
int argc = VECTOR_LENGTH(argv);
|
|
|
|
|
|
|
|
char **unix_argv = Malloc(char*, argc+1);
|
|
|
|
char **unix_env;
|
|
|
|
|
|
|
|
if( unix_argv == NULL ) return errno;
|
|
|
|
|
|
|
|
/* Scheme->Unix convert the argv parameter. */
|
|
|
|
for(i=0; i<argc; i++)
|
|
|
|
unix_argv[i] = cig_string_body(VECTOR_REF(argv,i));
|
|
|
|
unix_argv[argc] = NULL;
|
|
|
|
|
|
|
|
/* Scheme->Unix convert the env parameter. */
|
|
|
|
if( env == SCHTRUE ) unix_env = environ;
|
|
|
|
else {
|
|
|
|
int envlen = VECTOR_LENGTH(env);
|
|
|
|
unix_env = Malloc(char*, envlen+1);
|
|
|
|
|
|
|
|
if( !unix_env ) goto lose;
|
|
|
|
|
|
|
|
for(j=0; j<envlen; j++)
|
|
|
|
unix_env[j] = cig_string_body(VECTOR_REF(env,j));
|
|
|
|
unix_env[envlen] = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
execve(prog, unix_argv, unix_env); /* Do it. */
|
|
|
|
|
|
|
|
if( env != SCHTRUE ) {
|
|
|
|
e = errno;
|
|
|
|
Free(unix_env);
|
|
|
|
errno = e;
|
|
|
|
}
|
|
|
|
lose:
|
|
|
|
e = errno;
|
|
|
|
Free(unix_argv);
|
|
|
|
return e;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Random file and I/O stuff
|
|
|
|
*******************************************************************************
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* Returns [errno, r, w] */
|
|
|
|
int scheme_pipe(int *r, int *w)
|
|
|
|
{
|
|
|
|
int fds[2];
|
|
|
|
if( pipe(fds) ) {
|
|
|
|
*r = 0; *w = 0;
|
|
|
|
return errno;
|
|
|
|
}
|
|
|
|
|
|
|
|
*r = fds[0]; *w = fds[1];
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Read the symlink into static memory. Return NULL on error. */
|
|
|
|
|
|
|
|
static char linkpath[MAXPATHLEN+1]; /* Maybe unaligned. Not reentrant. */
|
|
|
|
|
1995-10-22 08:34:53 -04:00
|
|
|
char const *scm_readlink(const char *path)
|
1995-10-13 23:34:21 -04:00
|
|
|
{
|
|
|
|
int retval = readlink(path, linkpath, MAXPATHLEN);
|
|
|
|
|
1995-10-22 08:34:53 -04:00
|
|
|
return (char const *)
|
1996-09-26 15:30:22 -04:00
|
|
|
((retval == -1) ? NULL : ( linkpath[retval] = '\0', linkpath ));
|
1995-10-13 23:34:21 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
1995-10-21 08:07:25 -04:00
|
|
|
|
|
|
|
/* Scheme interfaces to utime().
|
|
|
|
** Complicated by need to pass real 32-bit quantities.
|
|
|
|
*/
|
|
|
|
|
|
|
|
int scm_utime(char const *path, int ac_hi, int ac_lo, int mod_hi, int mod_lo)
|
|
|
|
{
|
|
|
|
struct utimbuf t;
|
|
|
|
t.actime = comp8_24(ac_hi, ac_lo);
|
|
|
|
t.modtime = comp8_24(mod_hi, mod_lo);
|
|
|
|
return utime(path, &t);
|
|
|
|
}
|
|
|
|
|
|
|
|
int scm_utime_now(char const *path) {return utime(path, 0);}
|
|
|
|
|
|
|
|
|
1996-09-12 00:53:36 -04:00
|
|
|
int set_cloexec(int fd, int val)
|
|
|
|
{
|
|
|
|
int flags = fcntl(fd, F_GETFD);
|
|
|
|
if( flags == -1 ) return errno;
|
|
|
|
val = -val; /* 0 -> 0 and 1 -> -1 */
|
|
|
|
|
|
|
|
/* If it's already what we want, just return. */
|
|
|
|
if( (flags & FD_CLOEXEC) == (FD_CLOEXEC & val) ) return 0;
|
|
|
|
|
|
|
|
flags = (flags & ~FD_CLOEXEC) | (val & FD_CLOEXEC);
|
|
|
|
return fcntl(fd, F_SETFD, flags) ? errno : 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1995-10-13 23:34:21 -04:00
|
|
|
/* Two versions of CWD
|
|
|
|
*******************************************************************************
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* Simple-minded POSIX version. */
|
1995-10-22 08:34:53 -04:00
|
|
|
int scheme_cwd(const char **dirp)
|
1995-10-13 23:34:21 -04:00
|
|
|
{
|
|
|
|
char *buf;
|
|
|
|
int size = 100;
|
|
|
|
|
|
|
|
buf = Malloc(char,size);
|
|
|
|
if(!buf) goto lose;
|
|
|
|
|
|
|
|
while( !getcwd(buf, size) )
|
|
|
|
if( errno != ERANGE ) goto lose;
|
|
|
|
else {
|
|
|
|
/* Double the buf and retry. */
|
|
|
|
char *nbuf = Realloc(char, buf, size += size);
|
|
|
|
if( !nbuf ) goto lose;
|
|
|
|
buf = nbuf;
|
|
|
|
}
|
|
|
|
|
1995-10-22 08:34:53 -04:00
|
|
|
*dirp = (const char*) buf; /* win */
|
1995-10-13 23:34:21 -04:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
lose:
|
|
|
|
{int e = errno;
|
|
|
|
Free(buf);
|
|
|
|
*dirp = NULL;
|
|
|
|
return e;}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#if 0
|
|
|
|
/* Faster SUNOS version. */
|
|
|
|
/* We have to use malloc, because the stub is going to free the string. */
|
|
|
|
|
1995-10-22 08:34:53 -04:00
|
|
|
int scheme_cwd(const char **dirp)
|
1995-10-13 23:34:21 -04:00
|
|
|
{
|
|
|
|
char *buf = Malloc(char,MAXPATHLEN);
|
|
|
|
int e;
|
|
|
|
|
|
|
|
if( buf && getwd(buf) ) {
|
1995-10-22 08:34:53 -04:00
|
|
|
*dirp = (const char*) buf;
|
1995-10-13 23:34:21 -04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* lose */
|
|
|
|
e = errno;
|
|
|
|
Free(buf);
|
|
|
|
*dirp = NULL;
|
|
|
|
return e;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
/* Process times
|
|
|
|
*******************************************************************************
|
|
|
|
*/
|
|
|
|
|
1995-10-22 08:34:53 -04:00
|
|
|
/* Sleazing on the types here -- the ret values should be clock_t, not int,
|
|
|
|
** but cig can't handle it.
|
|
|
|
*/
|
|
|
|
|
|
|
|
int process_times(int *utime, int *stime, int *cutime, int *cstime)
|
1995-10-13 23:34:21 -04:00
|
|
|
{
|
|
|
|
struct tms tms;
|
|
|
|
clock_t t = times(&tms);
|
|
|
|
if (t == -1) return -1;
|
|
|
|
*utime = tms.tms_utime;
|
|
|
|
*stime = tms.tms_stime;
|
|
|
|
*cutime = tms.tms_cutime;
|
|
|
|
*cstime = tms.tms_cstime;
|
|
|
|
return t;
|
|
|
|
}
|
|
|
|
|
1995-10-22 08:34:53 -04:00
|
|
|
int cpu_clock_ticks_per_sec()
|
1995-10-13 23:34:21 -04:00
|
|
|
{
|
|
|
|
#ifdef _SC_CLK_TCK
|
|
|
|
static long clock_tick = 0;
|
|
|
|
|
|
|
|
if (clock_tick == 0)
|
|
|
|
clock_tick = sysconf(_SC_CLK_TCK); /* POSIX.1, POSIX.2 */
|
|
|
|
return clock_tick;
|
|
|
|
#else
|
|
|
|
#ifdef CLK_TCK
|
|
|
|
return CLK_TCK;
|
|
|
|
#else
|
|
|
|
return 60;
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Reading and writing
|
|
|
|
*******************************************************************************
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* Return a char, #f (EOF), or errno. */
|
|
|
|
scheme_value read_fdes_char(int fd)
|
|
|
|
{
|
|
|
|
int i; char c;
|
|
|
|
if( (i=read(fd, &c, 1)) < 0 ) return ENTER_FIXNUM(errno);
|
|
|
|
if(i==0) return SCHFALSE;
|
|
|
|
return ENTER_CHAR(c);
|
|
|
|
}
|
|
|
|
|
|
|
|
int write_fdes_char(char c, int fd) {return write(fd, &c, 1);}
|
|
|
|
|
|
|
|
|
|
|
|
int read_fdes_substring(scheme_value buf, int start, int end, int fd)
|
|
|
|
{
|
|
|
|
return read(fd, StrByte(buf,start), end-start);
|
|
|
|
}
|
|
|
|
|
|
|
|
int write_fdes_substring(scheme_value buf, int start, int end, int fd)
|
|
|
|
{
|
|
|
|
return write(fd, StrByte(buf,start), end-start);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
** Stat hackery
|
|
|
|
*******************************************************************************
|
|
|
|
** DANGER, WILL ROBINSON: It's not necessarily true that all these
|
|
|
|
** stat fields will fit into a fixnum.
|
|
|
|
** In fact, S48's 30 bit fixnums are almost certainly good enough
|
|
|
|
** for everything but times. 30 signed bits ran out in 1987.
|
|
|
|
** So the time fields are split, low 24, high everything else.
|
|
|
|
** I haven't bothered w/anything else, since the only other real limit
|
|
|
|
** is size -- files can't be bigger than .5Gb.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* S_ISSOCK(mode) and S_ISLNK(mode) are not POSIX. You lose on a NeXT. Ugh. */
|
|
|
|
#ifndef S_ISSOCK
|
|
|
|
#define S_ISSOCK(mode) (((mode) & S_IFMT) == S_IFSOCK)
|
|
|
|
#endif
|
|
|
|
#ifndef S_ISLNK
|
|
|
|
#define S_ISLNK(mode) (((mode) & S_IFMT) == S_IFLNK)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define low24(x) ((x) & 0xffffff)
|
|
|
|
#define hi_but24(x) (((x) >> 24) & 0xff)
|
|
|
|
|
|
|
|
/* Note that hi_but24 assumes value is a *32 bit* signed value. We have to
|
|
|
|
** do this, because C's right-shift operator exposes word width. A suckful
|
|
|
|
** language.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* Internal aux function -- loads stat values into Scheme vector: */
|
|
|
|
static int really_stat(int retval, struct stat *s, scheme_value vec)
|
|
|
|
{
|
|
|
|
int modes, typecode = -1;
|
|
|
|
|
|
|
|
if( 14 != VECTOR_LENGTH(vec) ) return -1;
|
|
|
|
if( retval < 0 ) return errno;
|
|
|
|
|
|
|
|
modes = s->st_mode;
|
|
|
|
if( S_ISBLK(modes) ) typecode = 0;
|
|
|
|
else if( S_ISCHR(modes) ) typecode = 1;
|
|
|
|
else if( S_ISDIR(modes) ) typecode = 2;
|
|
|
|
else if( S_ISFIFO(modes) ) typecode = 3;
|
|
|
|
else if( S_ISREG(modes) ) typecode = 4;
|
|
|
|
else if( S_ISSOCK(modes) ) typecode = 5;
|
|
|
|
else if( S_ISLNK(modes) ) typecode = 6;
|
|
|
|
|
|
|
|
VECTOR_REF(vec,0) = ENTER_FIXNUM(typecode);
|
|
|
|
VECTOR_REF(vec,1) = ENTER_FIXNUM(s->st_dev);
|
|
|
|
VECTOR_REF(vec,2) = ENTER_FIXNUM(s->st_ino);
|
|
|
|
VECTOR_REF(vec,3) = ENTER_FIXNUM(s->st_mode);
|
|
|
|
VECTOR_REF(vec,4) = ENTER_FIXNUM(s->st_nlink);
|
|
|
|
VECTOR_REF(vec,5) = ENTER_FIXNUM(s->st_uid);
|
|
|
|
VECTOR_REF(vec,6) = ENTER_FIXNUM(s->st_gid);
|
|
|
|
VECTOR_REF(vec,7) = ENTER_FIXNUM(s->st_size);
|
|
|
|
|
|
|
|
VECTOR_REF(vec,8) = ENTER_FIXNUM( low24(s->st_atime));
|
|
|
|
VECTOR_REF(vec,9) = ENTER_FIXNUM(hi_but24(s->st_atime));
|
|
|
|
|
|
|
|
VECTOR_REF(vec,10) = ENTER_FIXNUM( low24(s->st_mtime));
|
|
|
|
VECTOR_REF(vec,11) = ENTER_FIXNUM(hi_but24(s->st_mtime));
|
|
|
|
|
|
|
|
VECTOR_REF(vec,12) = ENTER_FIXNUM( low24(s->st_ctime));
|
|
|
|
VECTOR_REF(vec,13) = ENTER_FIXNUM(hi_but24(s->st_ctime));
|
|
|
|
|
|
|
|
/* We also used to do st_rdev, st_blksize, and st_blocks.
|
|
|
|
These aren't POSIX, and, e.g., are not around on SGI machines.
|
|
|
|
Too bad -- blksize is useful. Unix sux. */
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
1995-10-22 08:34:53 -04:00
|
|
|
int scheme_stat(const char *path, scheme_value vec, int chase_p)
|
1995-10-13 23:34:21 -04:00
|
|
|
{
|
|
|
|
struct stat s;
|
|
|
|
return really_stat(chase_p ? stat(path, &s) : lstat(path, &s), &s, vec);
|
|
|
|
}
|
|
|
|
|
|
|
|
int scheme_fstat(int fd, scheme_value vec)
|
|
|
|
{
|
|
|
|
struct stat s;
|
|
|
|
return really_stat(fstat(fd,&s), &s, vec);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Supplementary groups access
|
|
|
|
*******************************************************************************
|
|
|
|
*/
|
|
|
|
|
|
|
|
int num_supp_groups(void)
|
|
|
|
{
|
|
|
|
return getgroups(0,NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Load the supplementary groups into GVEC. */
|
|
|
|
|
|
|
|
int get_groups(scheme_value gvec)
|
|
|
|
{
|
|
|
|
int veclen = VECTOR_LENGTH(gvec), i, retval;
|
|
|
|
gid_t gvec0[20], *gp = gvec0;
|
|
|
|
|
|
|
|
if( veclen > 20 )
|
|
|
|
if( NULL == (gp=Malloc(gid_t,veclen)) ) return -1;
|
|
|
|
|
|
|
|
retval = getgroups(veclen, gp);
|
|
|
|
|
|
|
|
if( retval != -1 )
|
|
|
|
for( i=veclen; i--; )
|
|
|
|
VECTOR_REF(gvec,i) = ENTER_FIXNUM(gp[i]);
|
|
|
|
|
|
|
|
if( veclen > 20 ) Free(gp);
|
|
|
|
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Environment hackery
|
|
|
|
*******************************************************************************
|
|
|
|
*/
|
|
|
|
|
|
|
|
int put_env(const char *s)
|
|
|
|
{
|
|
|
|
char *s1 = Malloc(char, strlen(s)+1);
|
|
|
|
if( !s1 ) return ENTER_FIXNUM(errno);
|
|
|
|
|
|
|
|
strcpy(s1, s);
|
|
|
|
|
|
|
|
return putenv(s1) ? ENTER_FIXNUM(errno) : SCHFALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
char** scm_envvec(int *len) /* Returns environ c-vector & its length. */
|
|
|
|
{
|
|
|
|
char **ptr=environ;
|
|
|
|
while( *ptr ) ptr++;
|
|
|
|
*len = ptr-environ;
|
|
|
|
|
|
|
|
return(environ);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Load the (Scheme) strings in the (Scheme) vector VEC into environ.
|
|
|
|
** Somewhat wasteful of memory: we do not free any of the memory
|
|
|
|
** in the old environ -- don't know if it is being shared elsewhere.
|
|
|
|
*/
|
|
|
|
|
|
|
|
int install_env(scheme_value vec)
|
|
|
|
{
|
|
|
|
int i, envsize;
|
|
|
|
char **newenv;
|
|
|
|
|
|
|
|
envsize = VECTOR_LENGTH(vec);
|
|
|
|
newenv = Malloc(char*, envsize+1);
|
|
|
|
if( !newenv ) return errno;
|
|
|
|
|
|
|
|
for( i=0; i<envsize; i++ ) {
|
|
|
|
char *s = scheme2c_strcpy(VECTOR_REF(vec,i));
|
|
|
|
if (!s) {
|
|
|
|
/* Return all the memory and bail out. */
|
|
|
|
int e = errno;
|
|
|
|
while(--i) Free(newenv[i]);
|
|
|
|
Free(newenv);
|
|
|
|
return e;
|
|
|
|
}
|
|
|
|
newenv[i] = s;
|
|
|
|
}
|
|
|
|
|
|
|
|
newenv[i] = NULL;
|
|
|
|
environ = newenv;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Delete the env var. */
|
1995-10-22 08:34:53 -04:00
|
|
|
void delete_env(const char *var)
|
1995-10-13 23:34:21 -04:00
|
|
|
{
|
|
|
|
int varlen = strlen(var);
|
|
|
|
char **ptr = environ-1;
|
|
|
|
|
|
|
|
do if( !*++ptr ) return;
|
|
|
|
while( strncmp(*ptr, var, varlen) || (*ptr)[varlen] != '=' );
|
|
|
|
|
|
|
|
do ptr[0] = ptr[1]; while( *++ptr );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*****************************************************************************/
|
|
|
|
|
|
|
|
/* N.B.: May be unaligned.
|
|
|
|
** Not re-entrant, either -- will puke if multithreaded.
|
|
|
|
*/
|
|
|
|
static char hostname[MAXHOSTNAMELEN+1];
|
|
|
|
|
1995-10-22 08:34:53 -04:00
|
|
|
char *scm_gethostname(void)
|
1995-10-13 23:34:21 -04:00
|
|
|
{
|
1995-10-22 08:34:53 -04:00
|
|
|
/* different OS's declare differently, so punt the prototype. */
|
|
|
|
int gethostname();
|
|
|
|
gethostname(hostname, MAXHOSTNAMELEN);
|
|
|
|
return hostname;
|
1995-11-01 18:00:57 -05:00
|
|
|
}
|
1995-10-13 23:34:21 -04:00
|
|
|
|
|
|
|
#include <errno.h>
|
|
|
|
|
1995-10-22 08:34:53 -04:00
|
|
|
char *errno_msg(int i)
|
1995-10-13 23:34:21 -04:00
|
|
|
{
|
1995-11-01 18:00:57 -05:00
|
|
|
#ifdef HAVE_STRERROR
|
|
|
|
return(strerror(i));
|
|
|
|
#else
|
|
|
|
/* temp hack until we figure out what to do about losing sys_errlist's */
|
|
|
|
extern
|
1995-10-13 23:34:21 -04:00
|
|
|
#ifdef HAVE_CONST_SYS_ERRLIST
|
1995-11-01 18:00:57 -05:00
|
|
|
const
|
1995-10-13 23:34:21 -04:00
|
|
|
#endif
|
1995-11-01 18:00:57 -05:00
|
|
|
char *sys_errlist[];
|
|
|
|
extern int sys_nerr;
|
|
|
|
return ( i < 0 || i > sys_nerr ) ? NULL /* i.e., #f */
|
|
|
|
: (char*) sys_errlist[i];
|
|
|
|
#endif /* !HAVE_STRERROR */
|
|
|
|
}
|
1995-10-13 23:34:21 -04:00
|
|
|
|
|
|
|
/* Some of fcntl()
|
|
|
|
******************
|
|
|
|
*/
|
|
|
|
|
|
|
|
int fcntl_read(int fd, int command)
|
|
|
|
{ return fcntl(fd, command); }
|
|
|
|
|
|
|
|
|
|
|
|
int fcntl_write(int fd, int command, int value)
|
|
|
|
{ return fcntl(fd, command, value); }
|