diff options
author | Ulrich Drepper <drepper@redhat.com> | 2003-09-17 08:47:44 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2003-09-17 08:47:44 +0000 |
commit | a4db3439f1177cf5c5ceb80bfa3f3a2cef00fc0e (patch) | |
tree | e21a8cd5a2222281888d37b530d360e92995abd7 /nptl/pthread_attr_init.c | |
parent | 6c052003bda07641309dcd4fe4a5158d24f5d607 (diff) | |
download | glibc-a4db3439f1177cf5c5ceb80bfa3f3a2cef00fc0e.tar.gz glibc-a4db3439f1177cf5c5ceb80bfa3f3a2cef00fc0e.tar.xz glibc-a4db3439f1177cf5c5ceb80bfa3f3a2cef00fc0e.zip |
Update.
2003-09-15 Jakub Jelinek <jakub@redhat.com> * 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 <jakub@redhat.com> * 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.
Diffstat (limited to 'nptl/pthread_attr_init.c')
-rw-r--r-- | nptl/pthread_attr_init.c | 6 |
1 files changed, 2 insertions, 4 deletions
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 <drepper@redhat.com>, 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; |