You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
248 B

#include "tests.h"
#include <signal.h>
int
main(void)
{
stack_t ss = {
.ss_sp = (void *) 0xbaadf00d,
.ss_flags = SS_DISABLE,
.ss_size = 0xdeadbeef
};
if (sigaltstack(&ss, (stack_t *) 0))
perror_msg_and_skip("sigaltstack");
return 0;
}