diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 2000-04-07 09:25:06 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 2000-04-07 09:25:06 (GMT) |
commit | 37d21e117f3f4f5732c7cc2d0954101d995e7dc6 (patch) | |
tree | 91bb1b202444b6aedca65b7cfdcbd8e987ad8ff1 /Mac/Modules | |
parent | d62966060fc78bdb6caafa85744ac8eaabea85b5 (diff) | |
download | cpython-37d21e117f3f4f5732c7cc2d0954101d995e7dc6.zip cpython-37d21e117f3f4f5732c7cc2d0954101d995e7dc6.tar.gz cpython-37d21e117f3f4f5732c7cc2d0954101d995e7dc6.tar.bz2 |
Started on GUSI2 and threading support.
Diffstat (limited to 'Mac/Modules')
-rw-r--r-- | Mac/Modules/macmodule.c | 26 |
1 files changed, 18 insertions, 8 deletions
diff --git a/Mac/Modules/macmodule.c b/Mac/Modules/macmodule.c index 910f690..b284912 100644 --- a/Mac/Modules/macmodule.c +++ b/Mac/Modules/macmodule.c @@ -40,7 +40,7 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. #undef S_IFREG #undef S_ISDIR #undef S_ISREG -#endif +#endif /* THINK_C */ #include "macstat.h" #ifdef USE_GUSI @@ -52,18 +52,28 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. #undef S_IWRITE #undef S_IEXEC +#ifdef USE_GUSI1 #include <GUSI.h> +#endif /* USE_GUSI1 */ #include <sys/types.h> -#include <stat.h> -#else +#include <sys/stat.h> +#else /* USE_GUSI */ #define stat macstat -#endif +#endif /* USE_GUSI */ -#ifdef __MWERKS__ +#ifdef USE_GUSI2 +#define sync bad_sync +#include <unistd.h> +#include <fcntl.h> +#undef sync +int sync(void); +#else +#ifdef x__MWERKS__ #include <unix.h> #else #include <fcntl.h> #endif +#endif /* Optional routines, for some compiler/runtime combinations */ #if defined(USE_GUSI) || !defined(__MWERKS__) @@ -183,7 +193,7 @@ mac_chdir(self, args) PyObject *self; PyObject *args; { -#ifdef USE_GUSI +#ifdef USE_GUSI1 PyObject *rv; /* Change MacOS's idea of wd too */ @@ -207,7 +217,7 @@ mac_close(self, args) Py_BEGIN_ALLOW_THREADS res = close(fd); Py_END_ALLOW_THREADS -#ifndef USE_GUSI +#ifndef USE_GUSI1 /* GUSI gives surious errors here? */ if (res < 0) return mac_error(); @@ -368,7 +378,7 @@ mac_mkdir(self, args) if (!PyArg_ParseTuple(args, "s|i", &path, &mode)) return NULL; Py_BEGIN_ALLOW_THREADS -#ifdef USE_GUSI +#ifdef USE_GUSI1 res = mkdir(path); #else res = mkdir(path, mode); |