From 2e7f6cdbbeeec5ddf32bd53befd8600864f06746 Mon Sep 17 00:00:00 2001 From: Sergey Simonchik Date: Thu, 19 Jan 2017 23:04:25 +0300 Subject: [PATCH] runnerw: improve usage docs readability (following IDEA-CR-17544) --- native/runner/runnerw/runnerw.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/native/runner/runnerw/runnerw.cpp b/native/runner/runnerw/runnerw.cpp index 2f7abfecd979..d5a59f40ba52 100644 --- a/native/runner/runnerw/runnerw.cpp +++ b/native/runner/runnerw/runnerw.cpp @@ -8,10 +8,10 @@ void PrintUsage() { printf("Usage: runnerw.exe \n"); printf("where is an executable file and are its arguments.\n"); printf("\n"); - printf("Creates a child process with inherited input, output and error streams.\n"); - printf("The input stream is processed using these rules:\n"); - printf(" 5 and 3 char sequence => a CTRL+BREAK signal is sent to the child process;\n"); - printf(" 5 and 5 char sequence => a CTRL+C signal is sent to the child process.\n"); + printf("Creates a child process with inherited input, output, and error streams.\n"); + printf("The input stream is scanned for the presence of the 2-char control sequences:\n"); + printf(" ENQ(5) and ETX(3) => a CTRL+BREAK signal is sent to the child process;\n"); + printf(" ENQ(5) and ENQ(5) => a CTRL+C signal is sent to the child process.\n"); printf("Also in case of system shutdown a CTRL+BREAK signal is sent to the child process.\n"); exit(0);