diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2021-08-23 14:54:45 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2021-08-23 14:54:45 (GMT) |
commit | 237c1409508ccddabf7671db08ce9b15bbcabaf1 (patch) | |
tree | b9ba8ee911afaa2995ea8c08901b6686d59d1c8a /unix/tclUnixThrd.c | |
parent | 65dc531cf93c773f5d73b4db3cb9dce44d5386df (diff) | |
parent | a5048e8dd92669687e9e6a3e5e040477366a5b69 (diff) | |
download | tcl-237c1409508ccddabf7671db08ce9b15bbcabaf1.zip tcl-237c1409508ccddabf7671db08ce9b15bbcabaf1.tar.gz tcl-237c1409508ccddabf7671db08ce9b15bbcabaf1.tar.bz2 |
Merge 8.7
Diffstat (limited to 'unix/tclUnixThrd.c')
-rw-r--r-- | unix/tclUnixThrd.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/unix/tclUnixThrd.c b/unix/tclUnixThrd.c index 1a70b35..36f0648 100644 --- a/unix/tclUnixThrd.c +++ b/unix/tclUnixThrd.c @@ -269,6 +269,11 @@ TclpThreadCreate( pthread_attr_destroy(&attr); return result; #else + (void)idPtr; + (void)proc; + (void)clientData; + (void)stackSize; + (void)flags; return TCL_ERROR; #endif /* TCL_THREADS */ } @@ -306,6 +311,9 @@ Tcl_JoinThread( } return (result == 0) ? TCL_OK : TCL_ERROR; #else + (void)threadId; + (void)state; + return TCL_ERROR; #endif } |