mirror of
http://git.haproxy.org/git/haproxy.git/
synced 2024-12-11 05:54:39 +00:00
38ceb554fd
The code that is there to run some unit tests on some internal features was moved to tests/unit. Ideally it should be buildable from the main makefile though this is not yet the case. The code that is kept for experimentation purposes (hashes, syscall optimization etc) as well as some captures of the results was moved to tests/exp. A few totally obsolete files which couldn't build anymore and were not relevant to current versions were removed.
17 lines
376 B
C
17 lines
376 B
C
#include <stdio.h>
|
|
#include <signal.h>
|
|
#include <unistd.h>
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
sigset_t new_sig, old_sig;
|
|
|
|
sigfillset(&new_sig);
|
|
sigprocmask(SIG_SETMASK, &new_sig, &old_sig);
|
|
printf("old_sig: %16Lx\n", *(unsigned long long*)&old_sig);
|
|
printf("new_sig: %16Lx\n", *(unsigned long long*)&new_sig);
|
|
|
|
argc--; argv++;
|
|
return argc ? execvp(*argv, argv) : 0;
|
|
}
|