blob: 75a5746fef9a8d7fb708a8eaac8cc938aa8782c8 [file] [log] [blame]
Guido van Rossum86d25681992-05-15 11:05:54 +00001/***********************************************************
Guido van Rossum524b5881995-01-04 19:10:35 +00002Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam,
3The Netherlands.
Guido van Rossum86d25681992-05-15 11:05:54 +00004
5 All Rights Reserved
6
7Permission to use, copy, modify, and distribute this software and its
8documentation for any purpose and without fee is hereby granted,
9provided that the above copyright notice appear in all copies and that
10both that copyright notice and this permission notice appear in
11supporting documentation, and that the names of Stichting Mathematisch
12Centrum or CWI not be used in advertising or publicity pertaining to
13distribution of the software without specific, written prior permission.
14
15STICHTING MATHEMATISCH CENTRUM DISCLAIMS ALL WARRANTIES WITH REGARD TO
16THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
17FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH CENTRUM BE LIABLE
18FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
19WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
20ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
21OF 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 Jansen743db361992-08-13 14:13:11 +000029#include "ceval.h"
Guido van Rossum86d25681992-05-15 11:05:54 +000030
Guido van Rossum43021931994-09-12 10:40:46 +000031#include <errno.h>
32#include <sys/types.h>
33#include <sys/stat.h>
34#include <unistd.h>
35#include <fcntl.h>
36
Guido van Rossum86d25681992-05-15 11:05:54 +000037extern int sginap(long);
38
39static object *
40sgi_nap(self, args)
41 object *self;
42 object *args;
43{
44 long ticks;
45 if (!getargs(args, "l", &ticks))
46 return NULL;
Jack Jansen743db361992-08-13 14:13:11 +000047 BGN_SAVE
Guido van Rossum86d25681992-05-15 11:05:54 +000048 sginap(ticks);
Jack Jansen743db361992-08-13 14:13:11 +000049 END_SAVE
Guido van Rossum86d25681992-05-15 11:05:54 +000050 INCREF(None);
51 return None;
52}
53
Guido van Rossum43021931994-09-12 10:40:46 +000054extern char *_getpty(int *, int, mode_t, int);
55
56static object *
57sgi__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 Rossum86d25681992-05-15 11:05:54 +000077static struct methodlist sgi_methods[] = {
78 {"nap", sgi_nap},
Guido van Rossum43021931994-09-12 10:40:46 +000079 {"_getpty", sgi__getpty},
Guido van Rossum86d25681992-05-15 11:05:54 +000080 {NULL, NULL} /* sentinel */
81};
82
83
84void
85initsgi()
86{
87 initmodule("sgi", sgi_methods);
88}
89
Guido van Rossum234f9421993-06-17 12:35:49 +000090static int dummy; /* $%#@!& dl wants at least a byte of bss */