2003-01-04  Ulrich Drepper  <drepper@redhat.com>

	* pthreadP.h (pthread_cond_2_0_t): Remove unneeded lock element.
This commit is contained in:
Ulrich Drepper 2003-01-04 08:01:29 +00:00
parent 7edb2ae36f
commit d27a78be34
4 changed files with 5 additions and 12 deletions

View File

@ -1 +1 @@
nptl 0.13 by Ulrich Drepper
nptl 0.14 by Ulrich Drepper

View File

@ -1,3 +1,7 @@
2003-01-04 Ulrich Drepper <drepper@redhat.com>
* pthreadP.h (pthread_cond_2_0_t): Remove unneeded lock element.
2003-01-03 Ulrich Drepper <drepper@redhat.com>
* Makefile (tests): Add tst-cond7.

View File

@ -10,13 +10,3 @@ sys_futex
- test with threaded process terminating and semadj (?) being applied
only after all threads are gone
- system() is cancelable. What happens to the child process? It probably
should be killed.
The signal handler setting is a process resource. Setting and resetting
it from multiple thread must be possible.
- the syscall wrapping code should really be in libc

View File

@ -71,7 +71,6 @@ extern int __pthread_debug attribute_hidden;
typedef struct
{
pthread_cond_t *cond;
lll_lock_t lock;
} pthread_cond_2_0_t;