I'm creating a ncurses program which reads system-wide keystrokes using AppKit. To clear the wall of text that accumulates on the command line while I run the program I execute this line of code before exiting the program.
while((c = getch()) != '\n' && c != EOF) {}
My question is if there is a more efficient way to solve this. For example disabling command line input while the program executes.
Edit:
I ran some tests and my problem seems to be rooted in usleep and not ncurses or AppKit. Here is an example:
#include <unistd.h>
int main() {
usleep(5000000);
return 0;
}
Try
tcflush(STDIN_FILENO, TCIFLUSH)
beforeexit()
.According to
tcflush(3)
: