From: Guido van Rossum Date: Thu, 22 Aug 1996 00:43:42 +0000 (+0000) Subject: Added thread module (it was already in the project!) X-Git-Tag: v1.4b3~50 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=bf57ed5f9575b2d4499ac089c4e2e48500c6ace4;p=thirdparty%2FPython%2Fcpython.git Added thread module (it was already in the project!) --- diff --git a/PC/config.c b/PC/config.c index b128aaaa1277..5e37a354aa41 100644 --- a/PC/config.c +++ b/PC/config.c @@ -50,6 +50,7 @@ extern void initsoundex(); extern void initstrop(); extern void initstruct(); extern void inittime(); +extern void initthread(); /* -- ADDMODULE MARKER 1 -- */ @@ -83,6 +84,9 @@ struct _inittab inittab[] = { {"strop", initstrop}, {"struct", initstruct}, {"time", inittime}, +#ifdef WITH_THREAD + {"thread", initthread}, +#endif /* -- ADDMODULE MARKER 2 -- */