1 /* Test program for executable stacks in an executable itself. */
9 #include "tst-execstack-mod.c" /* This defines the `tryme' test function. */
11 static void deeper (void (*f
) (void));
18 /* Test that growing the stack region gets new executable pages too. */
25 deeper (void (*f
) (void))
27 char stack
[1100 * 1024];
28 explicit_bzero (stack
, sizeof stack
);
30 memfrob (stack
, sizeof stack
);
33 #include <support/test-driver.c>