summaryrefslogtreecommitdiff
path: root/nptl/pthread_attr_destroy.c
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2004-03-19 00:14:42 +0000
committerUlrich Drepper <drepper@redhat.com>2004-03-19 00:14:42 +0000
commit439ff07be06e9354151f984c7d0d2fb05917e8be (patch)
tree2c3471a5c7e73d1f6a043b082266e7248b992c02 /nptl/pthread_attr_destroy.c
parent701a7b234eab5615adb472b5dc5b0a9199d69f9b (diff)
Update.
2004-03-18 Ulrich Drepper <drepper@redhat.com> * posix/sched.h: Change sched_getaffinity and sched_setaffinity interfaces: add new second parameter. * sysdeps/generic/sched_getaffinity.c: Implement interface change. * sysdeps/generic/sched_setaffinity.c: Likewise. * sysdeps/unix/sysv/linux/sched_getaffinity.c: Likewise. Add compatibility interface. * sysdeps/unix/sysv/linux/sched_setaffinity.c: Likewise. * sysdeps/unix/sysv/linux/Versions: Add versions for changed interfaces.
Diffstat (limited to 'nptl/pthread_attr_destroy.c')
-rw-r--r--nptl/pthread_attr_destroy.c40
1 files changed, 4 insertions, 36 deletions
diff --git a/nptl/pthread_attr_destroy.c b/nptl/pthread_attr_destroy.c
index 73cba1da01..b8d9a20d38 100644
--- a/nptl/pthread_attr_destroy.c
+++ b/nptl/pthread_attr_destroy.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 2002, 2003 Free Software Foundation, Inc.
+/* Copyright (C) 2002, 2003, 2004 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@redhat.com>, 2002.
@@ -36,42 +36,10 @@ __pthread_attr_destroy (attr)
#if SHLIB_COMPAT(libpthread, GLIBC_2_0, GLIBC_2_1)
/* In old struct pthread_attr, neither next nor cpuset are
present. */
- if (__builtin_expect ((iattr->flags & ATTR_FLAG_OLDATTR), 0))
- return 0;
+ if (__builtin_expect ((iattr->flags & ATTR_FLAG_OLDATTR), 0) == 0)
#endif
-
- /* Enqueue the attributes to the list of all known variables. */
- if (DEBUGGING_P)
- {
- struct pthread_attr *prevp = NULL;
- struct pthread_attr *runp;
-
- lll_lock (__attr_list_lock);
-
- runp = __attr_list;
- while (runp != NULL && runp != iattr)
- {
- prevp = runp;
- runp = runp->next;
- }
-
- if (runp != NULL)
- {
- if (prevp == NULL)
- __attr_list = iattr->next;
- else
- prevp->next = iattr->next;
- }
-
- lll_unlock (__attr_list_lock);
-
- if (runp == NULL)
- /* Not a valid attribute. */
- return EINVAL;
- }
-
- /* The affinity CPU set might be allocated dynamically. */
- free (iattr->cpuset);
+ /* The affinity CPU set might be allocated dynamically. */
+ free (iattr->cpuset);
return 0;
}