diff options
author | rpj <rpj> | 2002-02-27 22:53:15 +0000 |
---|---|---|
committer | rpj <rpj> | 2002-02-27 22:53:15 +0000 |
commit | 8200f6ff1edca15756a22e6359f20836c4b5425b (patch) | |
tree | ec67536235acd2694da7cae80fdef05ccfc27099 /Nmakefile.tests | |
parent | 586f6933530d1e0c3bf0d2b1fec2377056340107 (diff) |
* exception3.c (terminateFunction): For MSVC++, call
exit() rather than pthread_exit(). Add comments to explain
why.
* rwlock2_t.c: New test.
* rwlock3_t.c: New test.
* rwlock4_t.c: New test.
* rwlock5_t.c: New test.
* rwlock6_t.c: New test.
* rwlock6_t2.c: New test.
* rwlock6.c (main): Swap thread and result variables
to correspond to actual thread functions.
* rwlock1.c: Change test description comment to correspond
to the actual test.
Diffstat (limited to 'Nmakefile.tests')
-rw-r--r-- | Nmakefile.tests | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Nmakefile.tests b/Nmakefile.tests index 6ca0b5c..a623304 100644 --- a/Nmakefile.tests +++ b/Nmakefile.tests @@ -79,6 +79,12 @@ rwlock4:: rwlock4.c rwlock5:: rwlock5.c
rwlock6:: rwlock6.c
rwlock7:: rwlock7.c
+rwlock2_t:: rwlock2_t.c
+rwlock3_t:: rwlock3_t.c
+rwlock4_t:: rwlock4_t.c
+rwlock5_t:: rwlock5_t.c
+rwlock6_t:: rwlock6_t.c
+rwlock6_t2:: rwlock6_t2.c
context1:: context1.c
cancel3:: cancel3.c
cancel4:: cancel4.c
@@ -166,6 +172,12 @@ rwlock3 :test: rwlock2 rwlock4 :test: rwlock3
rwlock5 :test: rwlock4
rwlock6 :test: rwlock5
+rwlock2_t :test: rwlock2
+rwlock3_t :test: rwlock2_t
+rwlock4_t :test: rwlock3_t
+rwlock5_t :test: rwlock4_t
+rwlock6_t :test: rwlock5_t
+rwlock6_t2 :test: rwlock6_t
context1 :test: cancel2
cancel3 :test: context1
cancel4 :test: cancel3
|