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/tclEpollNotfy.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/tclEpollNotfy.c')
-rw-r--r-- | unix/tclEpollNotfy.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/unix/tclEpollNotfy.c b/unix/tclEpollNotfy.c index 5b40dd7..3d6bcd5 100644 --- a/unix/tclEpollNotfy.c +++ b/unix/tclEpollNotfy.c @@ -820,6 +820,12 @@ TclAsyncNotifier( */ pthread_kill((pthread_t) threadId, sigNumber); +#else + (void)sigNumber; + (void)threadId; + (void)clientData; + (void)flagPtr; + (void)value; #endif return 0; } |