| Guido van Rossum | 86d2568 | 1992-05-15 11:05:54 +0000 | [diff] [blame] | 1 | /*********************************************************** | 
| Guido van Rossum | 524b588 | 1995-01-04 19:10:35 +0000 | [diff] [blame] | 2 | Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, | 
 | 3 | The Netherlands. | 
| Guido van Rossum | 86d2568 | 1992-05-15 11:05:54 +0000 | [diff] [blame] | 4 |  | 
 | 5 |                         All Rights Reserved | 
 | 6 |  | 
 | 7 | Permission to use, copy, modify, and distribute this software and its  | 
 | 8 | documentation for any purpose and without fee is hereby granted,  | 
 | 9 | provided that the above copyright notice appear in all copies and that | 
 | 10 | both that copyright notice and this permission notice appear in  | 
 | 11 | supporting documentation, and that the names of Stichting Mathematisch | 
 | 12 | Centrum or CWI not be used in advertising or publicity pertaining to | 
 | 13 | distribution of the software without specific, written prior permission. | 
 | 14 |  | 
 | 15 | STICHTING MATHEMATISCH CENTRUM DISCLAIMS ALL WARRANTIES WITH REGARD TO | 
 | 16 | THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND | 
 | 17 | FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH CENTRUM BE LIABLE | 
 | 18 | FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES | 
 | 19 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN | 
 | 20 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT | 
 | 21 | OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | 
 | 22 |  | 
 | 23 | ******************************************************************/ | 
 | 24 |  | 
 | 25 | /* SGI module -- random SGI-specific things */ | 
 | 26 |  | 
 | 27 | #include "allobjects.h" | 
 | 28 | #include "modsupport.h" | 
| Jack Jansen | 743db36 | 1992-08-13 14:13:11 +0000 | [diff] [blame] | 29 | #include "ceval.h" | 
| Guido van Rossum | 86d2568 | 1992-05-15 11:05:54 +0000 | [diff] [blame] | 30 |  | 
| Guido van Rossum | 4302193 | 1994-09-12 10:40:46 +0000 | [diff] [blame] | 31 | #include <errno.h> | 
 | 32 | #include <sys/types.h> | 
 | 33 | #include <sys/stat.h> | 
 | 34 | #include <unistd.h> | 
 | 35 | #include <fcntl.h> | 
 | 36 |  | 
| Guido van Rossum | 86d2568 | 1992-05-15 11:05:54 +0000 | [diff] [blame] | 37 | static object * | 
 | 38 | sgi_nap(self, args) | 
 | 39 | 	object *self; | 
 | 40 | 	object *args; | 
 | 41 | { | 
 | 42 | 	long ticks; | 
 | 43 | 	if (!getargs(args, "l", &ticks)) | 
 | 44 | 		return NULL; | 
| Jack Jansen | 743db36 | 1992-08-13 14:13:11 +0000 | [diff] [blame] | 45 | 	BGN_SAVE | 
| Guido van Rossum | 86d2568 | 1992-05-15 11:05:54 +0000 | [diff] [blame] | 46 | 	sginap(ticks); | 
| Jack Jansen | 743db36 | 1992-08-13 14:13:11 +0000 | [diff] [blame] | 47 | 	END_SAVE | 
| Guido van Rossum | 86d2568 | 1992-05-15 11:05:54 +0000 | [diff] [blame] | 48 | 	INCREF(None); | 
 | 49 | 	return None; | 
 | 50 | } | 
 | 51 |  | 
| Guido van Rossum | 4302193 | 1994-09-12 10:40:46 +0000 | [diff] [blame] | 52 | extern char *_getpty(int *, int, mode_t, int); | 
 | 53 |  | 
 | 54 | static object * | 
 | 55 | sgi__getpty(self, args) | 
 | 56 | 	object *self; | 
 | 57 | 	object *args; | 
 | 58 | { | 
 | 59 | 	int oflag; | 
 | 60 | 	int mode; | 
 | 61 | 	int nofork; | 
 | 62 | 	char *name; | 
 | 63 | 	int fildes; | 
 | 64 | 	if (!getargs(args, "(iii)", &oflag, &mode, &nofork)) | 
 | 65 | 		return NULL; | 
 | 66 | 	errno = 0; | 
 | 67 | 	name = _getpty(&fildes, oflag, (mode_t)mode, nofork); | 
 | 68 | 	if (name == NULL) { | 
 | 69 | 		err_errno(IOError); | 
 | 70 | 		return NULL; | 
 | 71 | 	} | 
 | 72 | 	return mkvalue("(si)", name, fildes); | 
 | 73 | } | 
 | 74 |  | 
| Guido van Rossum | 86d2568 | 1992-05-15 11:05:54 +0000 | [diff] [blame] | 75 | static struct methodlist sgi_methods[] = { | 
 | 76 | 	{"nap",		sgi_nap}, | 
| Guido van Rossum | 4302193 | 1994-09-12 10:40:46 +0000 | [diff] [blame] | 77 | 	{"_getpty",	sgi__getpty}, | 
| Guido van Rossum | 86d2568 | 1992-05-15 11:05:54 +0000 | [diff] [blame] | 78 | 	{NULL,		NULL}		/* sentinel */ | 
 | 79 | }; | 
 | 80 |  | 
 | 81 |  | 
 | 82 | void | 
 | 83 | initsgi() | 
 | 84 | { | 
 | 85 | 	initmodule("sgi", sgi_methods); | 
 | 86 | } | 
 | 87 |  | 
| Guido van Rossum | 234f942 | 1993-06-17 12:35:49 +0000 | [diff] [blame] | 88 | static int dummy; /* $%#@!& dl wants at least a byte of bss */ |