home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
GEMini Atari
/
GEMini_Atari_CD-ROM_Walnut_Creek_December_1993.iso
/
zip
/
mint
/
mntlib16.lzh
/
MNTLIB16
/
SYSCONF.C
< prev
next >
Wrap
C/C++ Source or Header
|
1993-08-03
|
2KB
|
76 lines
/*
* sysconf() and pathconf() for TOS/MiNT (kinda POSIXy)
* Written by Dave Gymer and placed in the Public Domain
*
* NOTE: this file will have to be updated as and when MiNT gains
* new Sysconf() and Dpathconf() variables, as will unistd.h, so that
* TOS programs get the correct values back. (But who uses TOS? :-)
*/
#include <unistd.h>
#include <mintbind.h>
#include <errno.h>
#ifndef _COMPILER_H
#include <compiler.h> /* ++ ers */
#endif
extern int __mint;
#define UNLIMITED (0x7fffffffL)
long
sysconf(var)
int var;
{
if(__mint)
return Sysconf(var);
switch(var) {
case _SC_LAST:
return 4;
case _SC_MEMR_MAX:
return UNLIMITED; /* not true for TOS < 1.4 :-( */
case _SC_ARG_MAX:
return 127; /* ignore this, cuz we can pass via the env */
case _SC_OPEN_MAX:
return 45; /* think I read this somewhere */
case _SC_NGROUPS_MAX:
return 0; /* this is bad news :-( */
case _SC_CHILD_MAX:
return UNLIMITED; /* good 'ol TOS :-) */
default:
return EINVAL;
}
}
long
pathconf(path, var)
const char *path;
int var;
{
long r;
if(__mint) {
r = Dpathconf(path, var);
if (var == _PC_NO_TRUNC)
return r ? -1 : 0;
return r;
}
switch(var) {
case _PC_LAST:
return 3;
case _PC_IOPEN_MAX:
return 45; /* -ish, maybe... */
case _PC_LINK_MAX:
return 1;
case _PC_PATH_MAX:
return 128; /* I'm sure I read that this is 64 in TOS 1.0 */
case _PC_NAME_MAX:
return 12;
case _PC_NO_TRUNC:
return -1; /* file names are automatically truncated */
default: /* note that _PC_PIPE_BUF is invalid */
return EINVAL;
}
}