diff options
author | Roland McGrath <roland@gnu.org> | 2007-05-15 20:34:30 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2007-05-15 20:34:30 +0000 |
commit | 18b86433d08e3df2a2820ede370d52bbda55eb74 (patch) | |
tree | 59347eb227c205dbf728f7177212f81a9ca48467 /nptl/descr.h | |
parent | e169ea9b569d9e9a60bde4aebe960591bacaf4ef (diff) | |
download | glibc-18b86433d08e3df2a2820ede370d52bbda55eb74.tar glibc-18b86433d08e3df2a2820ede370d52bbda55eb74.tar.gz glibc-18b86433d08e3df2a2820ede370d52bbda55eb74.tar.bz2 glibc-18b86433d08e3df2a2820ede370d52bbda55eb74.zip |
Updated to fedora-glibc-20070515T2025
Diffstat (limited to 'nptl/descr.h')
-rw-r--r-- | nptl/descr.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/nptl/descr.h b/nptl/descr.h index 321ce85085..00cad1aa83 100644 --- a/nptl/descr.h +++ b/nptl/descr.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc. +/* Copyright (C) 2002-2006, 2007 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper <drepper@redhat.com>, 2002. @@ -268,6 +268,9 @@ struct pthread | EXITING_BITMASK | CANCEL_RESTMASK | TERMINATED_BITMASK)) \ == (CANCELTYPE_BITMASK | CANCELED_BITMASK)) + /* Flags. Including those copied from the thread attribute. */ + int flags; + /* We allocate one block of references here. This should be enough to avoid allocating any memory dynamically for most applications. */ struct pthread_key_data @@ -321,9 +324,6 @@ struct pthread /* Check whether a thread is detached. */ #define IS_DETACHED(pd) ((pd)->joinid == (pd)) - /* Flags. Including those copied from the thread attribute. */ - int flags; - /* The result of the thread function. */ void *result; |