Skip to content
Advertisement

linux c++ libev official example show redundant console behavior

I just tried the official example of libev, like below. After compiling and running, I see once I input anything from stdin, the event is triggered, no problem. But what I inputed is still treated as solid input and then appear on my console. My question is: is there a way to avoid this console input from being prompted to console, and just like libev to catch and store it?

Any way in libev can do this?

I paste the official example here:

JavaScript

Advertisement

Answer

I assume you mean the echoing of what you write? It’s the default behavior of terminal program. You can use termios functions and flags to disable echoing. Remember to enable it before exiting your program though.

Advertisement