aboutsummaryrefslogtreecommitdiffstats
path: root/tests/stop.c
blob: 05c0e61799f4abe5258ed00897c8c6bd008f2e91 (plain) (blame)
1
2
3
4
5
6
7
8
#include <signal.h>
#include <unistd.h>

int
main(void)
{
	return kill(getpid(), SIGSTOP);
}