diff options
author | Stefan Farfeleder <stefanf@FreeBSD.org> | 2005-08-20 16:44:41 +0000 |
---|---|---|
committer | Stefan Farfeleder <stefanf@FreeBSD.org> | 2005-08-20 16:44:41 +0000 |
commit | a1f85d7f83f899786626708083839512b2cd4ebd (patch) | |
tree | 0c9d939aa363baa5fbd07daf4d09c3119f9d113e /sys/sparc64/include/_limits.h | |
parent | d599e39db8fe20317f28e2e4f0dbd68496c97fe1 (diff) |
Move MINSIGSTKSZ from <machine/signal.h> to <machine/_limits.h> and rename
it to __MINSIGSTKSZ. Define MINSIGSTKSZ in <sys/signal.h>.
This is done in order to use MINSIGSTKSZ for the macro PTHREAD_STACK_MIN
in <pthread.h> (soon <limits.h>) without having to include the whole
<sys/signal.h> header.
Discussed with: bde
Notes
Notes:
svn path=/head/; revision=149337
Diffstat (limited to 'sys/sparc64/include/_limits.h')
-rw-r--r-- | sys/sparc64/include/_limits.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sys/sparc64/include/_limits.h b/sys/sparc64/include/_limits.h index 04604a23762f..248369288cae 100644 --- a/sys/sparc64/include/_limits.h +++ b/sys/sparc64/include/_limits.h @@ -81,4 +81,7 @@ #define __LONG_BIT 64 #define __WORD_BIT 32 +/* Minimum signal stack size. */ +#define __MINSIGSTKSZ (1024 * 4) + #endif /* !_MACHINE__LIMITS_H_ */ |