summaryrefslogtreecommitdiffstats
path: root/unix/tclUnixThrd.c
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2025-03-02 15:48:58 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2025-03-02 15:48:58 (GMT)
commit6dcc8167f2562ad7d1e02274355f7cbb79ddbf68 (patch)
treeb317af126bf5d5d05e29eea5e4c09eddb2cf4e9e /unix/tclUnixThrd.c
parent841cd34c3b77d2b106eb06b22a48393846c0b0a3 (diff)
downloadtcl-6dcc8167f2562ad7d1e02274355f7cbb79ddbf68.zip
tcl-6dcc8167f2562ad7d1e02274355f7cbb79ddbf68.tar.gz
tcl-6dcc8167f2562ad7d1e02274355f7cbb79ddbf68.tar.bz2
Bunch of whitespace basic fixes.
Diffstat (limited to 'unix/tclUnixThrd.c')
-rw-r--r--unix/tclUnixThrd.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/unix/tclUnixThrd.c b/unix/tclUnixThrd.c
index 24bc72d..ae22e46 100644
--- a/unix/tclUnixThrd.c
+++ b/unix/tclUnixThrd.c
@@ -213,8 +213,8 @@ int
TclpThreadCreate(
Tcl_ThreadId *idPtr, /* Return, the ID of the thread */
Tcl_ThreadCreateProc *proc, /* Main() function of the thread */
- void *clientData, /* The one argument to Main() */
- size_t stackSize, /* Size of stack for the new thread */
+ void *clientData, /* The one argument to Main() */
+ size_t stackSize, /* Size of stack for the new thread */
int flags) /* Flags controlling behaviour of the new
* thread. */
{
@@ -672,7 +672,7 @@ void
Tcl_ConditionWait(
Tcl_Condition *condPtr, /* Really (pthread_cond_t **) */
Tcl_Mutex *mutexPtr, /* Really (PMutex **) */
- const Tcl_Time *timePtr) /* Timeout on waiting period */
+ const Tcl_Time *timePtr) /* Timeout on waiting period */
{
pthread_cond_t *pcondPtr;
PMutex *pmutexPtr;