summaryrefslogtreecommitdiff
path: root/lib/librthread/rthread_attr.c
diff options
context:
space:
mode:
authorKurt Miller <kurt@cvs.openbsd.org>2012-03-22 15:26:05 +0000
committerKurt Miller <kurt@cvs.openbsd.org>2012-03-22 15:26:05 +0000
commita6f40b7e2b75fc35859c1660f325e2b383af2884 (patch)
tree58730d51e9ced3b1b1a3f6e8f32252f4c02820df /lib/librthread/rthread_attr.c
parentc59f4cc7e8cd9ad9924377405ac25be696718fbf (diff)
Remove pthread_suspend* and related functions. This is part of the
rthreads major library bump from last night. okay kettenis@
Diffstat (limited to 'lib/librthread/rthread_attr.c')
-rw-r--r--lib/librthread/rthread_attr.c9
1 files changed, 1 insertions, 8 deletions
diff --git a/lib/librthread/rthread_attr.c b/lib/librthread/rthread_attr.c
index 384893a1d95..05f7f3c1f9c 100644
--- a/lib/librthread/rthread_attr.c
+++ b/lib/librthread/rthread_attr.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: rthread_attr.c,v 1.18 2012/03/20 04:16:20 guenther Exp $ */
+/* $OpenBSD: rthread_attr.c,v 1.19 2012/03/22 15:26:04 kurt Exp $ */
/*
* Copyright (c) 2004,2005 Ted Unangst <tedu@openbsd.org>
* All Rights Reserved.
@@ -190,10 +190,3 @@ pthread_attr_setscope(pthread_attr_t *attrp, int contentionscope)
return (0);
}
-int
-pthread_attr_setcreatesuspend_np(pthread_attr_t *attr)
-{
- (*attr)->create_suspended = 1;
- return (0);
-}
-