summaryrefslogtreecommitdiff
path: root/threading_pthread.c
diff options
context:
space:
mode:
authorGravatar waker <wakeroid@gmail.com>2010-12-12 14:26:44 +0100
committerGravatar waker <wakeroid@gmail.com>2010-12-12 14:26:44 +0100
commitd23385f43a32cd7f4dd4ade2bc16f3b5c1b24e92 (patch)
treec6d16bacd2564072f10270a10c3c90c244d0c2f5 /threading_pthread.c
parent7452343e203191abceb52b54c7a5b7f8fb6738b8 (diff)
minor pthread cleanup
Diffstat (limited to 'threading_pthread.c')
-rw-r--r--threading_pthread.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/threading_pthread.c b/threading_pthread.c
index cb80fcb1..69904b41 100644
--- a/threading_pthread.c
+++ b/threading_pthread.c
@@ -43,7 +43,6 @@ thread_start (void (*fn)(void *ctx), void *ctx) {
s = pthread_attr_destroy (&attr);
if (s != 0) {
fprintf (stderr, "pthread_attr_destroy failed: %s\n", strerror (s));
-// pthread_cancel (tid); // missing on android
return 0;
}
return tid;