I have a console program and I want if the user press ctrl-z the program exits and if he press ctrl-c nothing happens. In Bash i'd put a trap, what I should use in C++?
|
|
|||||
|
|
|
In Unix use For example:
|
||||||
|
|
|
If you are using a UNIX based system, then you want either If you have some spare time, read the W. Richard Steven's classic Advanced Programming in the UNIX Environment. You will never be sorry. If you expect to be doing more UNIX system's programming tasks, then pick up copies of POSIX Programmers Guide and POSIX.4 Programmers Guide as well. They serve as great introductions and references. |
||
|
|
|
|
That's platform specific, of course. C++ itself has no knowledge of keyboard input or signal handling. As you mentioned bash, I guess you are on Linux or some kind of UN*X. In this case, take a look at signal.h. |
||||
|
|
|
For the Ctrl + C you have to catch SIGINT signal. Look here. |
||
|
|
