I wrote a program for linux using libxml2 for html parsing. Although it does its job, the html parser writes lots of various errors to stderr. Is it possible to disable stderr at all (or redirect it to /dev/null while not having to run it with a redirecting shell script)? I can live with having to write my own errors to stdout, I just want to get rid of these errors.
|
feedback
|
|
Use freopen to redirect to dev/null:
| |||
|
feedback
|
|
| |||
feedback
|
|
freopen(3) is a C-oriented solution (not C++ as the question asked for), and it is just luck that makes it work. It is not specified to work. It only works because when file descriptor 2 is closed and /dev/null is opened, it gets file descriptor 2. In a multi-threaded environment, this may fail. You also cannot guarantee that the implementation of freopen(3) first closes the given stream before opening the new file. This is all assuming that you cannot assume that libxml2 uses C-style stdio. A POSIX solution to this is to use open(2) and dup2(2):
| ||||
|
feedback
|
|
See the manual page for the | |||
|
feedback
|
|
You can redirect stderr (in bash, anyhow) from the command line as such: ./myProgram 2>/dev/null | |||||||
feedback
|