From a4db3439f1177cf5c5ceb80bfa3f3a2cef00fc0e Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Wed, 17 Sep 2003 08:47:44 +0000 Subject: Update. 2003-09-15 Jakub Jelinek * sysdeps/i386/Makefile (sysdep-CFLAGS): If not in math or csu subdir, add -mpreferred-stack-boundary=4, with few exceptions. 2003-09-17 Jakub Jelinek * Makeconfig (stack-align-test-flags): Set. * stdlib/Makefile (CFLAGS-tst-bsearch.c): Add $(stack-align-test-flags). * stdlib/tst-bsearch.c: Include tst-stack-align.h. (align_check): New var. (comp): Use TEST_STACK_ALIGN macro. (do_test): Fail if align_check != 1. * sysdeps/generic/tst-stack-align.h: New file. * sysdeps/i386/i686/Makefile (stack-align-test-flags): Add -msse. * sysdeps/i386/i686/tst-stack-align.h: New file. --- nptl/pthread_attr_init.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'nptl/pthread_attr_init.c') diff --git a/nptl/pthread_attr_init.c b/nptl/pthread_attr_init.c index 90c8dc2ede..b202d46bd3 100644 --- a/nptl/pthread_attr_init.c +++ b/nptl/pthread_attr_init.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002 Free Software Foundation, Inc. +/* Copyright (C) 2002, 2003 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. @@ -79,15 +79,13 @@ __pthread_attr_init_2_0 (attr) struct sched_param schedparam; int inheritsched; int scope; - } *iattr; + }; /* Many elements are initialized to zero so let us do it all at once. This also takes care of clearing the bytes which are not internally used. */ memset (attr, '\0', sizeof (struct old_attr)); - iattr = (struct old_attr *) attr; - /* We cannot enqueue the attribute because that member is not in the old attribute structure. */ return 0; -- cgit v1.2.3