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 | extern int sginap(long); |
| 38 | |
| 39 | static object * |
| 40 | sgi_nap(self, args) |
| 41 | object *self; |
| 42 | object *args; |
| 43 | { |
| 44 | long ticks; |
| 45 | if (!getargs(args, "l", &ticks)) |
| 46 | return NULL; |
Jack Jansen | 743db36 | 1992-08-13 14:13:11 +0000 | [diff] [blame] | 47 | BGN_SAVE |
Guido van Rossum | 86d2568 | 1992-05-15 11:05:54 +0000 | [diff] [blame] | 48 | sginap(ticks); |
Jack Jansen | 743db36 | 1992-08-13 14:13:11 +0000 | [diff] [blame] | 49 | END_SAVE |
Guido van Rossum | 86d2568 | 1992-05-15 11:05:54 +0000 | [diff] [blame] | 50 | INCREF(None); |
| 51 | return None; |
| 52 | } |
| 53 | |
Guido van Rossum | 4302193 | 1994-09-12 10:40:46 +0000 | [diff] [blame] | 54 | extern char *_getpty(int *, int, mode_t, int); |
| 55 | |
| 56 | static object * |
| 57 | sgi__getpty(self, args) |
| 58 | object *self; |
| 59 | object *args; |
| 60 | { |
| 61 | int oflag; |
| 62 | int mode; |
| 63 | int nofork; |
| 64 | char *name; |
| 65 | int fildes; |
| 66 | if (!getargs(args, "(iii)", &oflag, &mode, &nofork)) |
| 67 | return NULL; |
| 68 | errno = 0; |
| 69 | name = _getpty(&fildes, oflag, (mode_t)mode, nofork); |
| 70 | if (name == NULL) { |
| 71 | err_errno(IOError); |
| 72 | return NULL; |
| 73 | } |
| 74 | return mkvalue("(si)", name, fildes); |
| 75 | } |
| 76 | |
Guido van Rossum | 86d2568 | 1992-05-15 11:05:54 +0000 | [diff] [blame] | 77 | static struct methodlist sgi_methods[] = { |
| 78 | {"nap", sgi_nap}, |
Guido van Rossum | 4302193 | 1994-09-12 10:40:46 +0000 | [diff] [blame] | 79 | {"_getpty", sgi__getpty}, |
Guido van Rossum | 86d2568 | 1992-05-15 11:05:54 +0000 | [diff] [blame] | 80 | {NULL, NULL} /* sentinel */ |
| 81 | }; |
| 82 | |
| 83 | |
| 84 | void |
| 85 | initsgi() |
| 86 | { |
| 87 | initmodule("sgi", sgi_methods); |
| 88 | } |
| 89 | |
Guido van Rossum | 234f942 | 1993-06-17 12:35:49 +0000 | [diff] [blame] | 90 | static int dummy; /* $%#@!& dl wants at least a byte of bss */ |