mirror of
https://sourceware.org/git/glibc.git
synced 2025-09-02 16:01:20 +03:00
Definitions for condvar implementation on Linux/x86-64.
This commit is contained in:
@@ -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.
|
This file is part of the GNU C Library.
|
||||||
Contributed by Ulrich Drepper <drepper@redhat.com>, 2002.
|
Contributed by Ulrich Drepper <drepper@redhat.com>, 2002.
|
||||||
|
|
||||||
@@ -23,7 +23,7 @@
|
|||||||
#define __SIZEOF_PTHREAD_ATTR_T 56
|
#define __SIZEOF_PTHREAD_ATTR_T 56
|
||||||
#define __SIZEOF_PTHREAD_MUTEX_T 40
|
#define __SIZEOF_PTHREAD_MUTEX_T 40
|
||||||
#define __SIZEOF_PTHREAD_MUTEXATTR_T 4
|
#define __SIZEOF_PTHREAD_MUTEXATTR_T 4
|
||||||
#define __SIZEOF_PTHREAD_COND_T 24
|
#define __SIZEOF_PTHREAD_COND_T 64
|
||||||
#define __SIZEOF_PTHREAD_CONDATTR_T 4
|
#define __SIZEOF_PTHREAD_CONDATTR_T 4
|
||||||
#define __SIZEOF_PTHREAD_RWLOCK_T 56
|
#define __SIZEOF_PTHREAD_RWLOCK_T 56
|
||||||
#define __SIZEOF_PTHREAD_RWLOCKATTR_T 8
|
#define __SIZEOF_PTHREAD_RWLOCKATTR_T 8
|
||||||
@@ -74,8 +74,9 @@ typedef union
|
|||||||
struct
|
struct
|
||||||
{
|
{
|
||||||
int __lock;
|
int __lock;
|
||||||
unsigned int __nr_wakers;
|
unsigned long long int __total_seq;
|
||||||
unsigned int __nr_sleepers;
|
unsigned long long int __wakeup_seq;
|
||||||
|
unsigned long long int __woken_seq;
|
||||||
} __data;
|
} __data;
|
||||||
char __size[__SIZEOF_PTHREAD_COND_T];
|
char __size[__SIZEOF_PTHREAD_COND_T];
|
||||||
long int __align;
|
long int __align;
|
||||||
|
23
nptl/sysdeps/unix/sysv/linux/x86_64/lowlevelcond.h
Normal file
23
nptl/sysdeps/unix/sysv/linux/x86_64/lowlevelcond.h
Normal file
@@ -0,0 +1,23 @@
|
|||||||
|
/* 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.
|
||||||
|
|
||||||
|
The GNU C Library is free software; you can redistribute it and/or
|
||||||
|
modify it under the terms of the GNU Lesser General Public
|
||||||
|
License as published by the Free Software Foundation; either
|
||||||
|
version 2.1 of the License, or (at your option) any later version.
|
||||||
|
|
||||||
|
The GNU C Library is distributed in the hope that it will be useful,
|
||||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
Lesser General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU Lesser General Public
|
||||||
|
License along with the GNU C Library; if not, write to the Free
|
||||||
|
Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
|
||||||
|
02111-1307 USA. */
|
||||||
|
|
||||||
|
#define cond_lock 0
|
||||||
|
#define total_seq 8
|
||||||
|
#define wakeup_seq 16
|
||||||
|
#define woken_seq 24
|
Reference in New Issue
Block a user