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/alpha | |
| parent | d599e39db8fe20317f28e2e4f0dbd68496c97fe1 (diff) | |
Notes
Diffstat (limited to 'sys/alpha')
| -rw-r--r-- | sys/alpha/include/_limits.h | 6 | ||||
| -rw-r--r-- | sys/alpha/include/signal.h | 8 |
2 files changed, 6 insertions, 8 deletions
diff --git a/sys/alpha/include/_limits.h b/sys/alpha/include/_limits.h index 6e9b5672a301..0ab5874299b2 100644 --- a/sys/alpha/include/_limits.h +++ b/sys/alpha/include/_limits.h @@ -87,4 +87,10 @@ #define __LONG_BIT 64 #define __WORD_BIT 32 +/* + * Minimum signal stack size. The current signal frame + * for Alpha is 808 bytes large. + */ +#define __MINSIGSTKSZ (1024 * 4) + #endif /* !_MACHINE__LIMITS_H_ */ diff --git a/sys/alpha/include/signal.h b/sys/alpha/include/signal.h index 7e91ed8ae47e..06f6a411d161 100644 --- a/sys/alpha/include/signal.h +++ b/sys/alpha/include/signal.h @@ -36,14 +36,6 @@ typedef long sig_atomic_t; -#if __XSI_VISIBLE -/* - * Minimum signal stack size. The current signal frame - * for Alpha is 808 bytes large. - */ -#define MINSIGSTKSZ (1024 * 4) -#endif - /* * Only the kernel should need these old type definitions. */ |
