1992-05-15 08:05:54 -03:00
|
|
|
/***********************************************************
|
1995-01-04 15:10:35 -04:00
|
|
|
Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam,
|
|
|
|
The Netherlands.
|
1992-05-15 08:05:54 -03:00
|
|
|
|
|
|
|
All Rights Reserved
|
|
|
|
|
1996-10-25 11:44:06 -03:00
|
|
|
Permission to use, copy, modify, and distribute this software and its
|
|
|
|
documentation for any purpose and without fee is hereby granted,
|
1992-05-15 08:05:54 -03:00
|
|
|
provided that the above copyright notice appear in all copies and that
|
1996-10-25 11:44:06 -03:00
|
|
|
both that copyright notice and this permission notice appear in
|
1992-05-15 08:05:54 -03:00
|
|
|
supporting documentation, and that the names of Stichting Mathematisch
|
1996-10-25 11:44:06 -03:00
|
|
|
Centrum or CWI or Corporation for National Research Initiatives or
|
|
|
|
CNRI not be used in advertising or publicity pertaining to
|
|
|
|
distribution of the software without specific, written prior
|
|
|
|
permission.
|
1992-05-15 08:05:54 -03:00
|
|
|
|
1996-10-25 11:44:06 -03:00
|
|
|
While CWI is the initial source for this software, a modified version
|
|
|
|
is made available by the Corporation for National Research Initiatives
|
|
|
|
(CNRI) at the Internet address ftp://ftp.python.org.
|
|
|
|
|
|
|
|
STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH
|
|
|
|
REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF
|
|
|
|
MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH
|
|
|
|
CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL
|
|
|
|
DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
|
|
|
|
PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
|
|
|
TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
|
|
PERFORMANCE OF THIS SOFTWARE.
|
1992-05-15 08:05:54 -03:00
|
|
|
|
|
|
|
******************************************************************/
|
|
|
|
|
|
|
|
/* SGI module -- random SGI-specific things */
|
|
|
|
|
1996-12-09 20:32:31 -04:00
|
|
|
#include "Python.h"
|
1992-05-15 08:05:54 -03:00
|
|
|
|
1994-09-12 07:40:46 -03:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
|
1996-12-09 20:32:31 -04:00
|
|
|
static PyObject *
|
1992-05-15 08:05:54 -03:00
|
|
|
sgi_nap(self, args)
|
1996-12-09 20:32:31 -04:00
|
|
|
PyObject *self;
|
|
|
|
PyObject *args;
|
1992-05-15 08:05:54 -03:00
|
|
|
{
|
|
|
|
long ticks;
|
1996-12-09 20:32:31 -04:00
|
|
|
if (!PyArg_Parse(args, "l", &ticks))
|
1992-05-15 08:05:54 -03:00
|
|
|
return NULL;
|
1996-12-09 20:32:31 -04:00
|
|
|
Py_BEGIN_ALLOW_THREADS
|
1992-05-15 08:05:54 -03:00
|
|
|
sginap(ticks);
|
1996-12-09 20:32:31 -04:00
|
|
|
Py_END_ALLOW_THREADS
|
|
|
|
Py_INCREF(Py_None);
|
|
|
|
return Py_None;
|
1992-05-15 08:05:54 -03:00
|
|
|
}
|
|
|
|
|
1994-09-12 07:40:46 -03:00
|
|
|
extern char *_getpty(int *, int, mode_t, int);
|
|
|
|
|
1996-12-09 20:32:31 -04:00
|
|
|
static PyObject *
|
1994-09-12 07:40:46 -03:00
|
|
|
sgi__getpty(self, args)
|
1996-12-09 20:32:31 -04:00
|
|
|
PyObject *self;
|
|
|
|
PyObject *args;
|
1994-09-12 07:40:46 -03:00
|
|
|
{
|
|
|
|
int oflag;
|
|
|
|
int mode;
|
|
|
|
int nofork;
|
|
|
|
char *name;
|
|
|
|
int fildes;
|
1996-12-09 20:32:31 -04:00
|
|
|
if (!PyArg_Parse(args, "(iii)", &oflag, &mode, &nofork))
|
1994-09-12 07:40:46 -03:00
|
|
|
return NULL;
|
|
|
|
errno = 0;
|
|
|
|
name = _getpty(&fildes, oflag, (mode_t)mode, nofork);
|
|
|
|
if (name == NULL) {
|
1996-12-09 20:32:31 -04:00
|
|
|
PyErr_SetFromErrno(PyExc_IOError);
|
1994-09-12 07:40:46 -03:00
|
|
|
return NULL;
|
|
|
|
}
|
1996-12-09 20:32:31 -04:00
|
|
|
return Py_BuildValue("(si)", name, fildes);
|
1994-09-12 07:40:46 -03:00
|
|
|
}
|
|
|
|
|
1996-12-09 20:32:31 -04:00
|
|
|
static PyMethodDef sgi_methods[] = {
|
1992-05-15 08:05:54 -03:00
|
|
|
{"nap", sgi_nap},
|
1994-09-12 07:40:46 -03:00
|
|
|
{"_getpty", sgi__getpty},
|
1992-05-15 08:05:54 -03:00
|
|
|
{NULL, NULL} /* sentinel */
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
initsgi()
|
|
|
|
{
|
1996-12-09 20:32:31 -04:00
|
|
|
Py_InitModule("sgi", sgi_methods);
|
1992-05-15 08:05:54 -03:00
|
|
|
}
|