* elf/nodelete.c (do_test): Remove reference to undefined member

sa_restorer.
	* rt/tst-aio4.c (do_test): Likewise.
This commit is contained in:
Andreas Schwab 2000-08-09 09:17:42 +00:00
parent 1d2f626eba
commit bce0e5172b
3 changed files with 4 additions and 2 deletions

View file

@ -1,5 +1,9 @@
2000-08-09 Andreas Schwab <schwab@suse.de>
* elf/nodelete.c (do_test): Remove reference to undefined member
sa_restorer.
* rt/tst-aio4.c (do_test): Likewise.
* configure.in: Add `-lm' when checking for libgd.
* malloc/Makefile ($(objpfx)memusagestat): Add `-lm' during
linking.

View file

@ -33,7 +33,6 @@ do_test (void)
sa.sa_handler = handler;
sigfillset (&sa.sa_mask);
sa.sa_flags = SA_RESTART;
sa.sa_restorer = NULL;
if (sigaction (SIGSEGV, &sa, NULL) == -1)
printf ("cannot install signal handler: %m\n");

View file

@ -101,7 +101,6 @@ do_test (int argc, char *argv[])
sa.sa_handler = sighandler;
sigemptyset (&sa.sa_mask);
sa.sa_flags = SA_RESTART;
sa.sa_restorer = NULL;
if (sigaction (MY_SIGNO, &sa, NULL) < 0)
{