Guido van Rossum | 86d2568 | 1992-05-15 11:05:54 +0000 | [diff] [blame] | 1 | /*********************************************************** |
Guido van Rossum | 9bfef44 | 1993-03-29 10:43:31 +0000 | [diff] [blame] | 2 | Copyright 1991, 1992, 1993 by Stichting Mathematisch Centrum, |
| 3 | Amsterdam, 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 | |
| 31 | extern int sginap(long); |
| 32 | |
| 33 | static object * |
| 34 | sgi_nap(self, args) |
| 35 | object *self; |
| 36 | object *args; |
| 37 | { |
| 38 | long ticks; |
| 39 | if (!getargs(args, "l", &ticks)) |
| 40 | return NULL; |
Jack Jansen | 743db36 | 1992-08-13 14:13:11 +0000 | [diff] [blame] | 41 | BGN_SAVE |
Guido van Rossum | 86d2568 | 1992-05-15 11:05:54 +0000 | [diff] [blame] | 42 | sginap(ticks); |
Jack Jansen | 743db36 | 1992-08-13 14:13:11 +0000 | [diff] [blame] | 43 | END_SAVE |
Guido van Rossum | 86d2568 | 1992-05-15 11:05:54 +0000 | [diff] [blame] | 44 | INCREF(None); |
| 45 | return None; |
| 46 | } |
| 47 | |
| 48 | static struct methodlist sgi_methods[] = { |
| 49 | {"nap", sgi_nap}, |
| 50 | {NULL, NULL} /* sentinel */ |
| 51 | }; |
| 52 | |
| 53 | |
| 54 | void |
| 55 | initsgi() |
| 56 | { |
| 57 | initmodule("sgi", sgi_methods); |
| 58 | } |
| 59 | |
Guido van Rossum | 234f942 | 1993-06-17 12:35:49 +0000 | [diff] [blame] | 60 | static int dummy; /* $%#@!& dl wants at least a byte of bss */ |