summaryrefslogtreecommitdiffstats
path: root/unix/tclSelectNotfy.c
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2024-03-19 17:09:30 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2024-03-19 17:09:30 (GMT)
commitc3b2380c572856c444417e37c6e52e7b24cf433b (patch)
treee6fdb6985952e104004323a8b1172733b8f33abf /unix/tclSelectNotfy.c
parent8bc2c23bda9e73e39c63f404bf1da85c8071f669 (diff)
downloadtcl-c3b2380c572856c444417e37c6e52e7b24cf433b.zip
tcl-c3b2380c572856c444417e37c6e52e7b24cf433b.tar.gz
tcl-c3b2380c572856c444417e37c6e52e7b24cf433b.tar.bz2
more spacing/formatting tweaks
Diffstat (limited to 'unix/tclSelectNotfy.c')
-rw-r--r--unix/tclSelectNotfy.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/unix/tclSelectNotfy.c b/unix/tclSelectNotfy.c
index feabfa8..252c493 100644
--- a/unix/tclSelectNotfy.c
+++ b/unix/tclSelectNotfy.c
@@ -1115,12 +1115,12 @@ NotifierThreadProc(
tspecPtr->tv_nsec = timePtr->tv_usec * 1000;
}
ret = pselect(numFdBits, &readableMask, &writableMask,
- &exceptionMask, tspecPtr, &notifierSigMask);
+ &exceptionMask, tspecPtr, &notifierSigMask);
}
#else
pthread_sigmask(SIG_SETMASK, &notifierSigMask, NULL);
ret = select(numFdBits, &readableMask, &writableMask, &exceptionMask,
- timePtr);
+ timePtr);
pthread_sigmask(SIG_BLOCK, &allSigMask, NULL);
#endif