summaryrefslogtreecommitdiffstats
path: root/src/subprocess-win32.cc
diff options
context:
space:
mode:
authorNico Weber <thakis@chromium.org>2014-05-18 00:20:20 (GMT)
committerNico Weber <thakis@chromium.org>2014-05-18 00:20:20 (GMT)
commitb0ada0efd9ee1d80d38c781fa15d73bece4a3d69 (patch)
treefb80ed9afefe1921d6ad170ce41bfa4908c06933 /src/subprocess-win32.cc
parentc246b586a4191d8eca21761b15466b047008489f (diff)
downloadNinja-b0ada0efd9ee1d80d38c781fa15d73bece4a3d69.zip
Ninja-b0ada0efd9ee1d80d38c781fa15d73bece4a3d69.tar.gz
Ninja-b0ada0efd9ee1d80d38c781fa15d73bece4a3d69.tar.bz2
win console wip: Fix comments based on review feedback.
Diffstat (limited to 'src/subprocess-win32.cc')
-rw-r--r--src/subprocess-win32.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/subprocess-win32.cc b/src/subprocess-win32.cc
index 4fa24c6..fad66e8 100644
--- a/src/subprocess-win32.cc
+++ b/src/subprocess-win32.cc
@@ -277,7 +277,7 @@ void SubprocessSet::Clear() {
for (vector<Subprocess*>::iterator i = running_.begin();
i != running_.end(); ++i) {
// Since the foreground process is in our process group, it will receive a
- // CTRL_BREAK_EVENT at the same time as us.
+ // CTRL_C_EVENT or CTRL_BREAK_EVENT at the same time as us.
if ((*i)->child_ && !(*i)->use_console_) {
if (!GenerateConsoleCtrlEvent(CTRL_BREAK_EVENT,
GetProcessId((*i)->child_))) {