diff options
author | Guido van Rossum <guido@python.org> | 1992-08-04 12:41:02 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1992-08-04 12:41:02 (GMT) |
commit | 1984f1e1c6306d4e8073c28d2395638f80ea509b (patch) | |
tree | 4366039e7665e689aef04549c3e3d73f99bdab32 /Modules/config.c.in | |
parent | 4fbf798f866b10ee50cc91a394d19c0d4b2f79ab (diff) | |
download | cpython-1984f1e1c6306d4e8073c28d2395638f80ea509b.zip cpython-1984f1e1c6306d4e8073c28d2395638f80ea509b.tar.gz cpython-1984f1e1c6306d4e8073c28d2395638f80ea509b.tar.bz2 |
* Makefile adapted to changes below.
* split pythonmain.c in two: most stuff goes to pythonrun.c, in the library.
* new optional built-in threadmodule.c, build upon Sjoerd's thread.{c,h}.
* new module from Sjoerd: mmmodule.c (dynamically loaded).
* new module from Sjoerd: sv (svgen.py, svmodule.c.proto).
* new files thread.{c,h} (from Sjoerd).
* new xxmodule.c (example only).
* myselect.h: bzero -> memset
* select.c: bzero -> memset; removed global variable
Diffstat (limited to 'Modules/config.c.in')
-rw-r--r-- | Modules/config.c.in | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/Modules/config.c.in b/Modules/config.c.in index 0973b77..8ed889a 100644 --- a/Modules/config.c.in +++ b/Modules/config.c.in @@ -123,6 +123,7 @@ extern void initpwd(); extern void initgrp(); extern void initmarshal(); extern void initselect(); +extern void initsocket(); #ifdef USE_AUDIO extern void initaudio(); @@ -148,15 +149,15 @@ extern void initpanel(); #ifdef USE_STDWIN extern void initstdwin(); #endif -#ifdef USE_SOCKET -extern void initsocket(); -#endif #ifdef USE_JPEG extern void initjpeg(); #endif #ifdef USE_CD extern void initcd(); #endif +#ifdef USE_THREAD +extern void initthread(); +#endif struct { char *name; @@ -173,6 +174,7 @@ struct { {"grp", initgrp}, {"marshal", initmarshal}, {"select", initselect}, + {"socket", initsocket}, /* Optional modules */ @@ -206,10 +208,6 @@ struct { {"stdwin", initstdwin}, #endif -#ifdef USE_SOCKET - {"socket", initsocket}, -#endif - #ifdef USE_JPEG {"jpeg", initjpeg}, #endif @@ -218,5 +216,9 @@ struct { {"cd", initcd}, #endif +#ifdef USE_THREAD + {"thread", initthread}, +#endif + {0, 0} /* Sentinel */ }; |