diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2017-03-08 14:32:15 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2017-03-08 14:32:15 (GMT) |
commit | 8137faed0f584ff906bbb25c471ebbfd9953dd1f (patch) | |
tree | b0f670533eb6d1a6ee52b8060767e3974dd85cbf /unix | |
parent | 067066361a88c28c0b5e34a3b04de3a8799eb6f2 (diff) | |
download | tcl-8137faed0f584ff906bbb25c471ebbfd9953dd1f.zip tcl-8137faed0f584ff906bbb25c471ebbfd9953dd1f.tar.gz tcl-8137faed0f584ff906bbb25c471ebbfd9953dd1f.tar.bz2 |
A few more end-of-line spacings
Diffstat (limited to 'unix')
-rw-r--r-- | unix/tclKqueueNotfy.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/unix/tclKqueueNotfy.c b/unix/tclKqueueNotfy.c index 5522f06..049829e 100644 --- a/unix/tclKqueueNotfy.c +++ b/unix/tclKqueueNotfy.c @@ -387,7 +387,7 @@ PlatformEventsInit( Tcl_Panic("fcntl: %s", strerror(errno)); } else { fdFl = fcntl(tsdPtr->triggerPipe[i], F_GETFL); - fdFl |= O_NONBLOCK; + fdFl |= O_NONBLOCK; } if (fcntl(tsdPtr->triggerPipe[i], F_SETFL, fdFl) == -1) { Tcl_Panic("fcntl: %s", strerror(errno)); @@ -780,7 +780,7 @@ Tcl_WaitForEvent( * Wait or poll for new events, queue Tcl events for the FileHandlers * corresponding to them, and update the FileHandlers' mask of events * of interest registered by the last call to Tcl_CreateFileHandler(). - * + * * Events for the trigger pipe are processed here in order to facilitate * inter-thread IPC. If another thread intends to wake up this thread * whilst it's blocking on PlatformEventsWait(), it write(2)s to the |