diff options
author | Ulrich Drepper <drepper@redhat.com> | 2001-04-12 04:45:10 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2001-04-12 04:45:10 +0000 |
commit | 9dd7309ceee055ed98039f29982dc773bfc63bef (patch) | |
tree | 17bf94f807cf606df10f54e79dca5cecb008c362 /linuxthreads/tst-cancel.c | |
parent | 7d4c3e67b4375ff9b56cc82fbc60e89d342691bc (diff) | |
download | glibc-9dd7309ceee055ed98039f29982dc773bfc63bef.tar glibc-9dd7309ceee055ed98039f29982dc773bfc63bef.tar.gz glibc-9dd7309ceee055ed98039f29982dc773bfc63bef.tar.bz2 glibc-9dd7309ceee055ed98039f29982dc773bfc63bef.zip |
Update.
* Makefile (tests): Comment out tst-cancel for now.
Diffstat (limited to 'linuxthreads/tst-cancel.c')
-rw-r--r-- | linuxthreads/tst-cancel.c | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/linuxthreads/tst-cancel.c b/linuxthreads/tst-cancel.c index 84b8197e42..8f2d307c9b 100644 --- a/linuxthreads/tst-cancel.c +++ b/linuxthreads/tst-cancel.c @@ -25,15 +25,6 @@ cleanup (void *arg) } -volatile int cleanupokcnt; - -static void -cleanupok (void *arg) -{ - ++cleanupokcnt; -} - - static void * t1 (void *arg) { @@ -63,6 +54,16 @@ t2 (void *arg) } +/* This does not work yet. */ +volatile int cleanupokcnt; + +static void +cleanupok (void *arg) +{ + ++cleanupokcnt; +} + + static void innerok (int a) { |