We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9690de8 commit a4f3b37Copy full SHA for a4f3b37
cpp_utils/src/cpp/event/StdinEventHandler.cpp
@@ -232,6 +232,7 @@ void StdinEventHandler::set_terminal_mode_(
232
// Modify line mode flags
233
// - ICANON: Desactivate canonic mode (process each character)
234
// - ECHO: Desactivate echo (does not print what the user writes on terminal)
235
+ // - ISIG: Desactivate signals (Ctrl+C, Ctrl+Z)
236
newt.c_lflag &= ~(ICANON | ECHO | ISIG);
237
238
// Apply new configuration
0 commit comments