1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-29 11:41:21 +03:00

(CFLAGS-tst-align.c): Add -mpreferred-stack-boundary=4.

This commit is contained in:
Ulrich Drepper
2004-12-22 20:10:10 +00:00
parent 0ecb606cb6
commit a334319f65
6215 changed files with 304673 additions and 494300 deletions

View File

@ -1,5 +1,5 @@
/* Skeleton for test programs.
Copyright (C) 1998,2000-2004, 2005 Free Software Foundation, Inc.
Copyright (C) 1998,2000,2001,2002,2003,2004 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1998.
@ -20,7 +20,6 @@
#include <errno.h>
#include <getopt.h>
#include <malloc.h>
#include <search.h>
#include <signal.h>
#include <stdio.h>
@ -152,9 +151,7 @@ timeout_handler (int sig __attribute__ ((unused)))
nanosleep() call return prematurely, all the better. We
won't restart it since this probably means the child process
finally died. */
struct timespec ts;
ts.tv_sec = 0;
ts.tv_nsec = 100000000;
struct timespec ts = { .tv_sec = 0, .tv_nsec = 100000000 };
nanosleep (&ts, NULL);
}
if (killed != 0 && killed != pid)
@ -199,9 +196,6 @@ main (int argc, char *argv[])
unsigned int timeoutfactor = 1;
pid_t termpid;
/* Make uses of freed and uninitialized memory known. */
mallopt (M_PERTURB, 42);
#ifdef STDOUT_UNBUFFERED
setbuf (stdout, NULL);
#endif