From 04bf5b655a9b5c0b82d8f54f96ab0f90241f6ab8 Mon Sep 17 00:00:00 2001 From: Glenn Morris Date: Fri, 27 Jun 2008 02:14:52 +0000 Subject: American English spelling fix. --- src/w32xfns.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/w32xfns.c') diff --git a/src/w32xfns.c b/src/w32xfns.c index 115b0363dd8..682876c6b25 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); } -- cgit v1.2.1