diff options
| author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2020-11-25 09:52:14 (GMT) |
|---|---|---|
| committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2020-11-25 09:52:14 (GMT) |
| commit | 7c1cfd6e15ac7576de46ec5592d9cbf226d464c9 (patch) | |
| tree | 9c728bcbefb36d540b5759187f23fe60d1a8e2aa /unix/tclUnixNotfy.c | |
| parent | 1aa3608a1c3ecda44c952d36c2f2bbd4f23cedc4 (diff) | |
| parent | aca216973f4109eff4ca90dd967295a28819e491 (diff) | |
| download | tcl-7c1cfd6e15ac7576de46ec5592d9cbf226d464c9.zip tcl-7c1cfd6e15ac7576de46ec5592d9cbf226d464c9.tar.gz tcl-7c1cfd6e15ac7576de46ec5592d9cbf226d464c9.tar.bz2 | |
Merge 8.7
Diffstat (limited to 'unix/tclUnixNotfy.c')
| -rw-r--r-- | unix/tclUnixNotfy.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/unix/tclUnixNotfy.c b/unix/tclUnixNotfy.c index 3817071..6b1ec3d 100644 --- a/unix/tclUnixNotfy.c +++ b/unix/tclUnixNotfy.c @@ -108,7 +108,7 @@ Tcl_AlertNotifier( } else { #ifdef NOTIFIER_SELECT #if TCL_THREADS - ThreadSpecificData *tsdPtr = clientData; + ThreadSpecificData *tsdPtr = (ThreadSpecificData *)clientData; pthread_mutex_lock(¬ifierMutex); tsdPtr->eventReady = 1; @@ -121,7 +121,7 @@ Tcl_AlertNotifier( pthread_mutex_unlock(¬ifierMutex); #endif /* TCL_THREADS */ #else /* !NOTIFIER_SELECT */ - ThreadSpecificData *tsdPtr = clientData; + ThreadSpecificData *tsdPtr = (ThreadSpecificData *)clientData; #if defined(NOTIFIER_EPOLL) && defined(HAVE_EVENTFD) uint64_t eventFdVal = 1; if (write(tsdPtr->triggerEventFd, &eventFdVal, |
