commit | f52c544167da552661d4908cf0bc6d341a1c05a1 | [log] [tgz] |
---|---|---|
author | Guido van Rossum <[email protected]> | Thu Aug 22 00:43:42 1996 +0000 |
committer | Guido van Rossum <[email protected]> | Thu Aug 22 00:43:42 1996 +0000 |
tree | 4e8b09d24a16bb4c7392cd39bc5cf8af75e95143 | |
parent | fef006a2c1f77a44a900aca1924ab8b12d9e2fd4 [diff] [blame] |
Added thread module (it was already in the project!)
diff --git a/PC/config.c b/PC/config.c index b128aaa..5e37a35 100644 --- a/PC/config.c +++ b/PC/config.c
@@ -50,6 +50,7 @@ extern void initstrop(); extern void initstruct(); extern void inittime(); +extern void initthread(); /* -- ADDMODULE MARKER 1 -- */ @@ -83,6 +84,9 @@ {"strop", initstrop}, {"struct", initstruct}, {"time", inittime}, +#ifdef WITH_THREAD + {"thread", initthread}, +#endif /* -- ADDMODULE MARKER 2 -- */