diff options
author | Ulrich Drepper <drepper@redhat.com> | 2001-03-16 17:23:19 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2001-03-16 17:23:19 +0000 |
commit | b8a8413c6f7970bc4d5659791c3b3670cc037578 (patch) | |
tree | f87371c476b617e38b2f08c34c165f8a3d1d4406 /linuxthreads/sysdeps/s390 | |
parent | b15ff9d65ed1b730e2aa648b4dceff5638072b4f (diff) | |
download | glibc-b8a8413c6f7970bc4d5659791c3b3670cc037578.tar.gz glibc-b8a8413c6f7970bc4d5659791c3b3670cc037578.tar.xz glibc-b8a8413c6f7970bc4d5659791c3b3670cc037578.zip |
Update.
2001-03-16 Martin Schwidefsky <schwidefsky@de.ibm.com> * sysdeps/s390/s390-64/bits/huge_val.h: Move to... * sysdeps/s390/bits/huge_val.h: ...here. * sysdeps/s390/s390-32/bit/huge_val.h: Remove. * sysdeps/s390/s390-64/ffs.c: Move to... * sysdeps/s390/ffs.c: ...here. * sysdeps/s390/s390-32/ffs.c: Remove.
Diffstat (limited to 'linuxthreads/sysdeps/s390')
-rw-r--r-- | linuxthreads/sysdeps/s390/s390-32/pt-machine.h (renamed from linuxthreads/sysdeps/s390/pt-machine.h) | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/linuxthreads/sysdeps/s390/pt-machine.h b/linuxthreads/sysdeps/s390/s390-32/pt-machine.h index d7ccf296e3..3afc9d5d60 100644 --- a/linuxthreads/sysdeps/s390/pt-machine.h +++ b/linuxthreads/sysdeps/s390/s390-32/pt-machine.h @@ -1,6 +1,6 @@ /* Machine-dependent pthreads configuration and inline functions. S390 version. - Copyright (C) 1999, 2000 Free Software Foundation, Inc. + Copyright (C) 1999, 2000, 2001 Free Software Foundation, Inc. Contributed by Martin Schwidefsky (schwidefsky@de.ibm.com). This file is part of the GNU C Library. @@ -66,6 +66,11 @@ register char * stack_pointer __asm__ ("15"); #define THREAD_SETMEM(descr, member, value) THREAD_SELF->member = (value) #define THREAD_SETMEM_NC(descr, member, value) THREAD_SELF->member = (value) +/* We want the OS to assign stack addresses. */ +#define FLOATING_STACKS 1 + +/* Maximum size of the stack if the rlimit is unlimited. */ +#define ARCH_STACK_MAX_SIZE 8*1024*1024 /* Compare-and-swap for semaphores. */ |