Changeset View
Changeset View
Standalone View
Standalone View
sys/arm64/include/_limits.h
Show All 21 Lines | |||||
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | ||||
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | ||||
* SUCH DAMAGE. | * SUCH DAMAGE. | ||||
* | * | ||||
* @(#)limits.h 8.3 (Berkeley) 1/4/94 | * @(#)limits.h 8.3 (Berkeley) 1/4/94 | ||||
* $FreeBSD$ | * $FreeBSD$ | ||||
*/ | */ | ||||
#ifdef __arm__ | |||||
#include <arm/_limits.h> | |||||
#else /* !__arm__ */ | |||||
#ifndef _MACHINE__LIMITS_H_ | #ifndef _MACHINE__LIMITS_H_ | ||||
#define _MACHINE__LIMITS_H_ | #define _MACHINE__LIMITS_H_ | ||||
/* | /* | ||||
* According to ANSI (section 2.2.4.2), the values below must be usable by | * According to ANSI (section 2.2.4.2), the values below must be usable by | ||||
* #if preprocessing directives. Additionally, the expression must have the | * #if preprocessing directives. Additionally, the expression must have the | ||||
* same type as would an expression that is an object of the corresponding | * same type as would an expression that is an object of the corresponding | ||||
* type converted according to the integral promotions. The subtraction for | * type converted according to the integral promotions. The subtraction for | ||||
Show All 40 Lines | |||||
#define __LONG_BIT 64 | #define __LONG_BIT 64 | ||||
#define __WORD_BIT 32 | #define __WORD_BIT 32 | ||||
/* Minimum signal stack size. */ | /* Minimum signal stack size. */ | ||||
#define __MINSIGSTKSZ (1024 * 4) | #define __MINSIGSTKSZ (1024 * 4) | ||||
#endif /* !_MACHINE__LIMITS_H_ */ | #endif /* !_MACHINE__LIMITS_H_ */ | ||||
#endif /* !__arm__ */ |