mirror of git://sourceware.org/git/glibc.git
Update.
2003-01-04 Ulrich Drepper <drepper@redhat.com> * pthreadP.h (pthread_cond_2_0_t): Remove unneeded lock element.
This commit is contained in:
parent
7edb2ae36f
commit
d27a78be34
|
|
@ -1 +1 @@
|
||||||
nptl 0.13 by Ulrich Drepper
|
nptl 0.14 by Ulrich Drepper
|
||||||
|
|
|
||||||
|
|
@ -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>
|
2003-01-03 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
* Makefile (tests): Add tst-cond7.
|
* Makefile (tests): Add tst-cond7.
|
||||||
|
|
|
||||||
10
nptl/TODO
10
nptl/TODO
|
|
@ -10,13 +10,3 @@ sys_futex
|
||||||
|
|
||||||
- test with threaded process terminating and semadj (?) being applied
|
- test with threaded process terminating and semadj (?) being applied
|
||||||
only after all threads are gone
|
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
|
|
||||||
|
|
|
||||||
|
|
@ -71,7 +71,6 @@ extern int __pthread_debug attribute_hidden;
|
||||||
typedef struct
|
typedef struct
|
||||||
{
|
{
|
||||||
pthread_cond_t *cond;
|
pthread_cond_t *cond;
|
||||||
lll_lock_t lock;
|
|
||||||
} pthread_cond_2_0_t;
|
} pthread_cond_2_0_t;
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue