diff options
author | jasone <jasone@FreeBSD.org> | 1999-07-06 00:25:38 +0000 |
---|---|---|
committer | jasone <jasone@FreeBSD.org> | 1999-07-06 00:25:38 +0000 |
commit | 88983e2fa584a0ccd018f2290d087e4db4c46350 (patch) | |
tree | 5873b217a3af72b58fdc75e5018708c367072b2d /lib/libpthread/thread/thr_create.c | |
parent | ebc43c4f80bf19d60c03df54244e9f97ea409baa (diff) | |
download | FreeBSD-src-88983e2fa584a0ccd018f2290d087e4db4c46350.zip FreeBSD-src-88983e2fa584a0ccd018f2290d087e4db4c46350.tar.gz |
Always use growable thread stacks on the i386. The VM_STACK kernel option
must be made default for the alpha before growable thread stacks are
enabled for the alpha.
Diffstat (limited to 'lib/libpthread/thread/thr_create.c')
-rw-r--r-- | lib/libpthread/thread/thr_create.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/lib/libpthread/thread/thr_create.c b/lib/libpthread/thread/thr_create.c index 1b12c7b..f5631a5 100644 --- a/lib/libpthread/thread/thr_create.c +++ b/lib/libpthread/thread/thr_create.c @@ -29,7 +29,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: uthread_create.c,v 1.13 1999/06/20 08:28:14 jb Exp $ + * $Id: uthread_create.c,v 1.14 1999/07/05 00:35:17 jasone Exp $ */ #include <errno.h> #include <stdlib.h> @@ -37,10 +37,8 @@ #include <fcntl.h> #include <unistd.h> #include <sys/time.h> -#ifdef _PTHREAD_GSTACK #include <sys/types.h> #include <sys/mman.h> -#endif #ifdef _THREAD_SAFE #include <machine/reg.h> #include <pthread.h> @@ -81,7 +79,7 @@ pthread_create(pthread_t * thread, const pthread_attr_t * attr, /* Check if a stack was specified in the thread attributes: */ if ((stack = pattr->stackaddr_attr) != NULL) { } -#ifdef _PTHREAD_GSTACK +#ifdef __i386__ /* Allocate memory for a default-size stack: */ else if (pattr->stacksize_attr == PTHREAD_STACK_DEFAULT) { struct stack * spare_stack; |