199767f8919635c4928607450d9e0abb932109ceToomas Soome/*-
199767f8919635c4928607450d9e0abb932109ceToomas Soome * Copyright (c) 1988, 1993
199767f8919635c4928607450d9e0abb932109ceToomas Soome * The Regents of the University of California. All rights reserved.
199767f8919635c4928607450d9e0abb932109ceToomas Soome *
199767f8919635c4928607450d9e0abb932109ceToomas Soome * Redistribution and use in source and binary forms, with or without
199767f8919635c4928607450d9e0abb932109ceToomas Soome * modification, are permitted provided that the following conditions
199767f8919635c4928607450d9e0abb932109ceToomas Soome * are met:
199767f8919635c4928607450d9e0abb932109ceToomas Soome * 1. Redistributions of source code must retain the above copyright
199767f8919635c4928607450d9e0abb932109ceToomas Soome * notice, this list of conditions and the following disclaimer.
199767f8919635c4928607450d9e0abb932109ceToomas Soome * 2. Redistributions in binary form must reproduce the above copyright
199767f8919635c4928607450d9e0abb932109ceToomas Soome * notice, this list of conditions and the following disclaimer in the
199767f8919635c4928607450d9e0abb932109ceToomas Soome * documentation and/or other materials provided with the distribution.
199767f8919635c4928607450d9e0abb932109ceToomas Soome * 4. Neither the name of the University nor the names of its contributors
199767f8919635c4928607450d9e0abb932109ceToomas Soome * may be used to endorse or promote products derived from this software
199767f8919635c4928607450d9e0abb932109ceToomas Soome * without specific prior written permission.
199767f8919635c4928607450d9e0abb932109ceToomas Soome *
199767f8919635c4928607450d9e0abb932109ceToomas Soome * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
199767f8919635c4928607450d9e0abb932109ceToomas Soome * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
199767f8919635c4928607450d9e0abb932109ceToomas Soome * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
199767f8919635c4928607450d9e0abb932109ceToomas Soome * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
199767f8919635c4928607450d9e0abb932109ceToomas Soome * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
199767f8919635c4928607450d9e0abb932109ceToomas Soome * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
199767f8919635c4928607450d9e0abb932109ceToomas Soome * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
199767f8919635c4928607450d9e0abb932109ceToomas Soome * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
199767f8919635c4928607450d9e0abb932109ceToomas Soome * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
199767f8919635c4928607450d9e0abb932109ceToomas Soome * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
199767f8919635c4928607450d9e0abb932109ceToomas Soome * SUCH DAMAGE.
199767f8919635c4928607450d9e0abb932109ceToomas Soome *
199767f8919635c4928607450d9e0abb932109ceToomas Soome * $FreeBSD$
199767f8919635c4928607450d9e0abb932109ceToomas Soome */
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas Soome#ifndef _SYS_LIMITS_H_
199767f8919635c4928607450d9e0abb932109ceToomas Soome#define _SYS_LIMITS_H_
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas Soome#include <sys/cdefs.h>
199767f8919635c4928607450d9e0abb932109ceToomas Soome#include <machine/_limits.h>
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas Soome#define CHAR_BIT __CHAR_BIT /* number of bits in a char */
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas Soome#define SCHAR_MAX __SCHAR_MAX /* max value for a signed char */
199767f8919635c4928607450d9e0abb932109ceToomas Soome#define SCHAR_MIN __SCHAR_MIN /* min value for a signed char */
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas Soome#define UCHAR_MAX __UCHAR_MAX /* max value for an unsigned char */
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas Soome#ifdef __CHAR_UNSIGNED__
199767f8919635c4928607450d9e0abb932109ceToomas Soome#define CHAR_MAX UCHAR_MAX /* max value for a char */
199767f8919635c4928607450d9e0abb932109ceToomas Soome#define CHAR_MIN 0 /* min value for a char */
199767f8919635c4928607450d9e0abb932109ceToomas Soome#else
199767f8919635c4928607450d9e0abb932109ceToomas Soome#define CHAR_MAX SCHAR_MAX
199767f8919635c4928607450d9e0abb932109ceToomas Soome#define CHAR_MIN SCHAR_MIN
199767f8919635c4928607450d9e0abb932109ceToomas Soome#endif
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas Soome#define USHRT_MAX __USHRT_MAX /* max value for an unsigned short */
199767f8919635c4928607450d9e0abb932109ceToomas Soome#define SHRT_MAX __SHRT_MAX /* max value for a short */
199767f8919635c4928607450d9e0abb932109ceToomas Soome#define SHRT_MIN __SHRT_MIN /* min value for a short */
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas Soome#define UINT_MAX __UINT_MAX /* max value for an unsigned int */
199767f8919635c4928607450d9e0abb932109ceToomas Soome#define INT_MAX __INT_MAX /* max value for an int */
199767f8919635c4928607450d9e0abb932109ceToomas Soome#define INT_MIN __INT_MIN /* min value for an int */
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas Soome#define ULONG_MAX __ULONG_MAX /* max for an unsigned long */
199767f8919635c4928607450d9e0abb932109ceToomas Soome#define LONG_MAX __LONG_MAX /* max for a long */
199767f8919635c4928607450d9e0abb932109ceToomas Soome#define LONG_MIN __LONG_MIN /* min for a long */
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas Soome#ifdef __LONG_LONG_SUPPORTED
199767f8919635c4928607450d9e0abb932109ceToomas Soome#define ULLONG_MAX __ULLONG_MAX /* max for an unsigned long long */
199767f8919635c4928607450d9e0abb932109ceToomas Soome#define LLONG_MAX __LLONG_MAX /* max for a long long */
199767f8919635c4928607450d9e0abb932109ceToomas Soome#define LLONG_MIN __LLONG_MIN /* min for a long long */
199767f8919635c4928607450d9e0abb932109ceToomas Soome#endif
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas Soome#if __POSIX_VISIBLE || __XSI_VISIBLE
199767f8919635c4928607450d9e0abb932109ceToomas Soome#define SSIZE_MAX __SSIZE_MAX /* max value for an ssize_t */
199767f8919635c4928607450d9e0abb932109ceToomas Soome#endif
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas Soome#if __POSIX_VISIBLE >= 200112 || __XSI_VISIBLE
199767f8919635c4928607450d9e0abb932109ceToomas Soome#define SIZE_T_MAX __SIZE_T_MAX /* max value for a size_t */
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas Soome#define OFF_MAX __OFF_MAX /* max value for an off_t */
199767f8919635c4928607450d9e0abb932109ceToomas Soome#define OFF_MIN __OFF_MIN /* min value for an off_t */
199767f8919635c4928607450d9e0abb932109ceToomas Soome#endif
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas Soome#if __BSD_VISIBLE
199767f8919635c4928607450d9e0abb932109ceToomas Soome#define GID_MAX UINT_MAX /* max value for a gid_t */
199767f8919635c4928607450d9e0abb932109ceToomas Soome#define UID_MAX UINT_MAX /* max value for a uid_t */
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas Soome#define UQUAD_MAX (__UQUAD_MAX) /* max value for a uquad_t */
199767f8919635c4928607450d9e0abb932109ceToomas Soome#define QUAD_MAX (__QUAD_MAX) /* max value for a quad_t */
199767f8919635c4928607450d9e0abb932109ceToomas Soome#define QUAD_MIN (__QUAD_MIN) /* min value for a quad_t */
199767f8919635c4928607450d9e0abb932109ceToomas Soome#endif
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas Soome#if __XSI_VISIBLE || __POSIX_VISIBLE >= 200809
199767f8919635c4928607450d9e0abb932109ceToomas Soome#define LONG_BIT __LONG_BIT
199767f8919635c4928607450d9e0abb932109ceToomas Soome#define WORD_BIT __WORD_BIT
199767f8919635c4928607450d9e0abb932109ceToomas Soome#endif
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas Soome#if __POSIX_VISIBLE
199767f8919635c4928607450d9e0abb932109ceToomas Soome#define MQ_PRIO_MAX 64
199767f8919635c4928607450d9e0abb932109ceToomas Soome#endif
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas Soome#endif /* !_SYS_LIMITS_H_ */