gcov_dump.h - sfeed_tests - sfeed tests and RSS and Atom files | |
git clone git://git.codemadness.org/sfeed_tests | |
Log | |
Files | |
Refs | |
README | |
LICENSE | |
--- | |
gcov_dump.h (200B) | |
--- | |
1 #include <sys/syscall.h> | |
2 | |
3 #include <unistd.h> | |
4 | |
5 void __gcov_dump(void); | |
6 | |
7 /* make sure to dump/flush gcov report before _exit */ | |
8 #undef _exit | |
9 #define _exit(code) __gcov_dump(); syscall(SYS_exit, code); |