Update.
authorUlrich Drepper <drepper@redhat.com>
Sat, 4 Jan 2003 08:01:29 +0000 (08:01 +0000)
committerUlrich Drepper <drepper@redhat.com>
Sat, 4 Jan 2003 08:01:29 +0000 (08:01 +0000)
2003-01-04  Ulrich Drepper  <drepper@redhat.com>

* pthreadP.h (pthread_cond_2_0_t): Remove unneeded lock element.

nptl/Banner
nptl/ChangeLog
nptl/TODO
nptl/pthreadP.h

index 69e4cc92ab21d99ffe0956dcb52af1a3dabc74fc..e028549a43536451fc09f88643931c5157a5a18b 100644 (file)
@@ -1 +1 @@
-nptl 0.13 by Ulrich Drepper
+nptl 0.14 by Ulrich Drepper
index 38f2ffb594e2aa3e3ca099f1dc4527fe97861ebc..d8a27c8107bd0f19fd117ca4643cebda658f32e7 100644 (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.
index a742c85cbf041d2efe1fa433a53fc80e65d0b8e2..a4a1055f4624db32e6f94eadf0121d9c8b360ebf 100644 (file)
--- a/nptl/TODO
+++ b/nptl/TODO
@@ -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
index 51b34f49ef27a6479b9de2c425f51062031fae96..3ebcbe96e74e22c8ba0cadd1ce0e8b238c243038 100644 (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;