Skip to content
Snippets Groups Projects
types.h 5.46 KiB
Newer Older
patacongo's avatar
patacongo committed
/****************************************************************************
patacongo's avatar
patacongo committed
 *
 *   Copyright (C) 2007-2009 Gregory Nutt. All rights reserved.
patacongo's avatar
patacongo committed
 *   Author: Gregory Nutt <spudmonkey@racsa.co.cr>
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 *
 * 1. Redistributions of source code must retain the above copyright
 *    notice, this list of conditions and the following disclaimer.
 * 2. Redistributions in binary form must reproduce the above copyright
 *    notice, this list of conditions and the following disclaimer in
 *    the documentation and/or other materials provided with the
 *    distribution.
 * 3. Neither the name NuttX nor the names of its contributors may be
patacongo's avatar
patacongo committed
 *    used to endorse or promote products derived from this software
 *    without specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
 * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
 * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
 * 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 SUCH DAMAGE.
 *
patacongo's avatar
patacongo committed
 ****************************************************************************/
patacongo's avatar
patacongo committed

#ifndef __INCLUDE_SYS_TYPES_H
#define __INCLUDE_SYS_TYPES_H
patacongo's avatar
patacongo committed

patacongo's avatar
patacongo committed
/****************************************************************************
patacongo's avatar
patacongo committed
 * Included Files
patacongo's avatar
patacongo committed
 ****************************************************************************/
patacongo's avatar
patacongo committed

patacongo's avatar
patacongo committed
#include <nuttx/config.h>
#include <nuttx/compiler.h>
patacongo's avatar
patacongo committed

#ifndef __ASSEMBLY__
#  include <stdint.h>
#endif
patacongo's avatar
patacongo committed
/****************************************************************************
 * Pre-processor Definitions
patacongo's avatar
patacongo committed
 ****************************************************************************/
patacongo's avatar
patacongo committed

/* Alternative values for type bool (for historic reasons) */
patacongo's avatar
patacongo committed

#ifndef TRUE
#  define TRUE  1
#endif
#ifndef FALSE
#  define FALSE 0
#endif
patacongo's avatar
patacongo committed

patacongo's avatar
patacongo committed
/* NULL is usually defined in stddef.h (which includes this file) */
patacongo's avatar
patacongo committed

#ifndef NULL
patacongo's avatar
patacongo committed
    /* SDCC is sensitive to NULL pointer type conversions */
#  ifdef SDCC
#    define NULL (0)
#  else
#    define NULL ((void*)0)
#  endif
patacongo's avatar
patacongo committed
#endif

/* POSIX-like OS return values: */

#if !defined(__cplusplus)
patacongo's avatar
patacongo committed
#  undef  ERROR
#  define ERROR -1
patacongo's avatar
patacongo committed
#endif

#undef  OK
#define OK 0

/* HPUX-like MIN/MAX value */

#define PRIOR_RR_MIN      0
#define PRIOR_RR_MAX    255
#define PRIOR_FIFO_MIN    0
#define PRIOR_FIFO_MAX  255
#define PRIOR_OTHER_MIN   0
#define PRIOR_OTHER_MAX 255

/* Scheduling Priorities.  NOTE:  Only the idle task can take
 * the true minimum priority. */
patacongo's avatar
patacongo committed

#define SCHED_PRIORITY_MAX     255
#define SCHED_PRIORITY_DEFAULT 100
#define SCHED_PRIORITY_MIN       1
#define SCHED_PRIORITY_IDLE      0

patacongo's avatar
patacongo committed
/****************************************************************************
patacongo's avatar
patacongo committed
 * Type Declarations
patacongo's avatar
patacongo committed
 ****************************************************************************/
patacongo's avatar
patacongo committed

#ifndef __ASSEMBLY__
typedef float  float32;
patacongo's avatar
patacongo committed
#ifndef CONFIG_HAVE_DOUBLE
typedef float  double_t;
typedef float  float64;
patacongo's avatar
patacongo committed
#else
typedef double double_t;
typedef double float64;
patacongo's avatar
patacongo committed
/* Misc. scalar types */

/* mode_t is an integer type used for file attributes.  mode_t needs
 * to be at least 16-bits but, in fact must be sizeof(int) because it is
 * pased via varargs.
 */

typedef unsigned int mode_t;

/* size_t is used for sizes of objects.
 * ssize_t is used for a count of bytes or an error indication.
 */

#ifdef CONFIG_SMALL_MEMORY

/* uid_t is used for user IDs
 * gid_t is used for group IDs.
 */


/* pid_t is used for process IDs and process group IDs */

patacongo's avatar
patacongo committed
typedef int          pid_t;

/* blkcnt_t and off_t are signed integer types.
 *
 *   blkcnt_t is used for file block counts.
 *   off_t is used for file sizes.
 *
 * Hence, both should be independent of processor architecture.
 */

typedef off_t        fpos_t;

/* blksize_t is a signed integer value used for file block sizes */

patacongo's avatar
patacongo committed

typedef unsigned int socklen_t;
/* The type useconds_t shall be an unsigned integer type capable of storing
 * values at least in the range [0, 1000000]. The type suseconds_t shall be
 * a signed integer type capable of storing values at least in the range
 * [-1, 1000000].
 */

typedef uint32_t     useconds_t;
typedef int32_t      suseconds_t;
patacongo's avatar
patacongo committed
/* Task entry point */
patacongo's avatar
patacongo committed

typedef int (*main_t)(int argc, char *argv[]);

patacongo's avatar
patacongo committed

patacongo's avatar
patacongo committed
/****************************************************************************
patacongo's avatar
patacongo committed
 * Global Function Prototypes
patacongo's avatar
patacongo committed
 ****************************************************************************/
patacongo's avatar
patacongo committed