diff options
author | Glenn Morris <rgm@gnu.org> | 2008-06-27 02:14:52 +0000 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2008-06-27 02:14:52 +0000 |
commit | 04bf5b655a9b5c0b82d8f54f96ab0f90241f6ab8 (patch) | |
tree | ffeae66e55a3c7757fac38c639292dce799c6fa7 /src/w32xfns.c | |
parent | 5618fbd2c79e982d717eaaec749eeb16382ddc04 (diff) |
American English spelling fix.
Diffstat (limited to 'src/w32xfns.c')
-rw-r--r-- | src/w32xfns.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/w32xfns.c b/src/w32xfns.c index 115b0363dd..682876c6b2 100644 --- a/src/w32xfns.c +++ b/src/w32xfns.c @@ -46,12 +46,12 @@ init_crit () when the input queue is empty, so make it a manual reset event. */ keyboard_handle = input_available = CreateEvent (NULL, TRUE, FALSE, NULL); - /* interrupt_handle is signalled when quit (C-g) is detected, so that + /* interrupt_handle is signaled when quit (C-g) is detected, so that blocking system calls can be interrupted. We make it a manual reset event, so that if we should ever have multiple threads performing system calls, they will all be interrupted (I'm guessing that would the right response). Note that we use PulseEvent to - signal this event, so that it never remains signalled. */ + signal this event, so that it never remains signaled. */ interrupt_handle = CreateEvent (NULL, TRUE, FALSE, NULL); } @@ -75,7 +75,7 @@ delete_crit () void signal_quit () { - /* Make sure this event never remains signalled; if the main thread + /* Make sure this event never remains signaled; if the main thread isn't in a blocking call, then this should do nothing. */ PulseEvent (interrupt_handle); } |