git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@5333 35acf78f-673a-0410-8e92-d51de3d6d3f4
parent
dedffdd99c
commit
9c56bcc138
|
@ -69,14 +69,14 @@
|
|||
* @brief Generic 'false' boolean constant.
|
||||
*/
|
||||
#if !defined(FALSE) || defined(__DOXYGEN__)
|
||||
#define FALSE 0
|
||||
#define FALSE false
|
||||
#endif
|
||||
|
||||
/**
|
||||
* @brief Generic 'true' boolean constant.
|
||||
*/
|
||||
#if !defined(TRUE) || defined(__DOXYGEN__)
|
||||
#define TRUE (!FALSE)
|
||||
#define TRUE true
|
||||
#endif
|
||||
|
||||
/**
|
||||
|
|
|
@ -29,16 +29,11 @@
|
|||
#ifndef _CHTYPES_H_
|
||||
#define _CHTYPES_H_
|
||||
|
||||
#define __need_NULL
|
||||
#define __need_size_t
|
||||
#define __need_ptrdiff_t
|
||||
#include <stddef.h>
|
||||
|
||||
#if !defined(_STDINT_H) && !defined(__STDINT_H_)
|
||||
#include <stdint.h>
|
||||
#endif
|
||||
#include <stdbool.h>
|
||||
|
||||
typedef int32_t bool_t; /**< Fast boolean type. */
|
||||
typedef bool bool_t; /**< Fast boolean type. */
|
||||
typedef uint8_t tmode_t; /**< Thread flags. */
|
||||
typedef uint8_t tstate_t; /**< Thread state. */
|
||||
typedef uint8_t trefs_t; /**< Thread references counter. */
|
||||
|
|
|
@ -29,14 +29,11 @@
|
|||
#ifndef _CHTYPES_H_
|
||||
#define _CHTYPES_H_
|
||||
|
||||
#define __need_NULL
|
||||
#define __need_size_t
|
||||
#define __need_ptrdiff_t
|
||||
#include <stddef.h>
|
||||
|
||||
#include <stdint.h>
|
||||
#include <stdbool.h>
|
||||
|
||||
typedef int32_t bool_t; /**< Fast boolean type. */
|
||||
typedef bool bool_t; /**< Fast boolean type. */
|
||||
typedef uint8_t tmode_t; /**< Thread flags. */
|
||||
typedef uint8_t tstate_t; /**< Thread state. */
|
||||
typedef uint8_t trefs_t; /**< Thread references counter. */
|
||||
|
|
|
@ -29,16 +29,11 @@
|
|||
#ifndef _CHTYPES_H_
|
||||
#define _CHTYPES_H_
|
||||
|
||||
#define __need_NULL
|
||||
#define __need_size_t
|
||||
#define __need_ptrdiff_t
|
||||
#include <stddef.h>
|
||||
|
||||
#if !defined(_STDINT_H) && !defined(__STDINT_H_)
|
||||
#include <stdint.h>
|
||||
#endif
|
||||
#include <stdbool.h>
|
||||
|
||||
typedef int8_t bool_t; /**< Fast boolean type. */
|
||||
typedef bool bool_t; /**< Fast boolean type. */
|
||||
typedef uint8_t tmode_t; /**< Thread flags. */
|
||||
typedef uint8_t tstate_t; /**< Thread state. */
|
||||
typedef uint8_t trefs_t; /**< Thread references counter. */
|
||||
|
|
|
@ -29,16 +29,11 @@
|
|||
#ifndef _CHTYPES_H_
|
||||
#define _CHTYPES_H_
|
||||
|
||||
#define __need_NULL
|
||||
#define __need_size_t
|
||||
#define __need_ptrdiff_t
|
||||
#include <stddef.h>
|
||||
|
||||
#if !defined(_STDINT_H) && !defined(__STDINT_H_)
|
||||
#include <stdint.h>
|
||||
#endif
|
||||
#include <stdbool.h>
|
||||
|
||||
typedef int16_t bool_t; /**< Fast boolean type. */
|
||||
typedef bool bool_t; /**< Fast boolean type. */
|
||||
typedef uint8_t tmode_t; /**< Thread flags. */
|
||||
typedef uint8_t tstate_t; /**< Thread state. */
|
||||
typedef uint8_t trefs_t; /**< Thread references counter. */
|
||||
|
|
|
@ -29,13 +29,9 @@
|
|||
#ifndef _CHTYPES_H_
|
||||
#define _CHTYPES_H_
|
||||
|
||||
#define __need_NULL
|
||||
#define __need_size_t
|
||||
#include <stddef.h>
|
||||
|
||||
#if !defined(_STDINT_H) && !defined(__STDINT_H_)
|
||||
#include <stdint.h>
|
||||
#endif
|
||||
#include <stdbool.h>
|
||||
|
||||
/*
|
||||
* Derived generic types.
|
||||
|
@ -50,7 +46,7 @@ typedef volatile uint32_t vuint32_t; /**< Volatile unsigned 32 bits. */
|
|||
/*
|
||||
* Kernel types.
|
||||
*/
|
||||
typedef int32_t bool_t; /**< Fast boolean type. */
|
||||
typedef bool bool_t; /**< Fast boolean type. */
|
||||
typedef uint8_t tmode_t; /**< Thread flags. */
|
||||
typedef uint8_t tstate_t; /**< Thread state. */
|
||||
typedef uint8_t trefs_t; /**< Thread references counter. */
|
||||
|
|
|
@ -21,16 +21,11 @@
|
|||
#ifndef _CHTYPES_H_
|
||||
#define _CHTYPES_H_
|
||||
|
||||
#define __need_NULL
|
||||
#define __need_size_t
|
||||
#define __need_ptrdiff_t
|
||||
#include <stddef.h>
|
||||
|
||||
#if !defined(_STDINT_H) && !defined(__STDINT_H_)
|
||||
#include <stdint.h>
|
||||
#endif
|
||||
#include <stdbool.h>
|
||||
|
||||
typedef int32_t bool_t; /**< Fast boolean type. */
|
||||
typedef bool bool_t; /**< Fast boolean type. */
|
||||
typedef uint8_t tmode_t; /**< Thread flags. */
|
||||
typedef uint8_t tstate_t; /**< Thread state. */
|
||||
typedef uint8_t trefs_t; /**< Thread references counter. */
|
||||
|
|
|
@ -29,14 +29,11 @@
|
|||
#ifndef _CHTYPES_H_
|
||||
#define _CHTYPES_H_
|
||||
|
||||
#define __need_NULL
|
||||
#define __need_size_t
|
||||
#define __need_ptrdiff_t
|
||||
#include <stddef.h>
|
||||
|
||||
#include <stdint.h>
|
||||
#include <stdbool.h>
|
||||
|
||||
typedef int32_t bool_t; /**< Fast boolean type. */
|
||||
typedef bool bool_t; /**< Fast boolean type. */
|
||||
typedef uint8_t tmode_t; /**< Thread flags. */
|
||||
typedef uint8_t tstate_t; /**< Thread state. */
|
||||
typedef uint8_t trefs_t; /**< Thread references counter. */
|
||||
|
|
|
@ -29,15 +29,11 @@
|
|||
#ifndef _CHTYPES_H_
|
||||
#define _CHTYPES_H_
|
||||
|
||||
#define __need_NULL
|
||||
#define __need_size_t
|
||||
#include <stddef.h>
|
||||
|
||||
#if !defined(_STDINT_H) && !defined(__STDINT_H_)
|
||||
#include <stdint.h>
|
||||
#endif
|
||||
#include <stdbool.h>
|
||||
|
||||
typedef int8_t bool_t; /**< Fast boolean type. */
|
||||
typedef bool bool_t; /**< Fast boolean type. */
|
||||
typedef uint8_t tmode_t; /**< Thread flags. */
|
||||
typedef uint8_t tstate_t; /**< Thread state. */
|
||||
typedef uint8_t trefs_t; /**< Thread references counter. */
|
||||
|
|
|
@ -29,14 +29,9 @@
|
|||
#ifndef _CHTYPES_H_
|
||||
#define _CHTYPES_H_
|
||||
|
||||
#define __need_NULL
|
||||
#define __need_size_t
|
||||
#include <stddef.h>
|
||||
|
||||
//#if !defined(_STDINT_H) && !defined(__STDINT_H_)
|
||||
//#include <stdint.h>
|
||||
//#endif
|
||||
|
||||
typedef unsigned char uint8t; /**< C99-style boolean. */
|
||||
typedef unsigned char uint8_t; /**< C99-style 8 bits unsigned. */
|
||||
typedef signed char int8_t; /**< C99-style 8 bits signed. */
|
||||
typedef unsigned int uint16_t; /**< C99-style 16 bits unsigned. */
|
||||
|
@ -47,7 +42,15 @@ typedef uint8_t uint_fast8_t; /**< C99-style 8 bits unsigned. */
|
|||
typedef uint16_t uint_fast16_t; /**< C99-style 16 bits unsigned. */
|
||||
typedef uint32_t uint_fast32_t; /**< C99-style 32 bits unsigned. */
|
||||
|
||||
typedef int8_t bool_t; /**< Fast boolean type. */
|
||||
#if !defined(false) || defined(__DOXYGEN__)
|
||||
#define false 0
|
||||
#endif
|
||||
|
||||
#if !defined(true) || defined(__DOXYGEN__)
|
||||
#define true (!false)
|
||||
#endif
|
||||
|
||||
typedef bool bool_t; /**< Fast boolean type. */
|
||||
typedef uint8_t tmode_t; /**< Thread flags. */
|
||||
typedef uint8_t tstate_t; /**< Thread state. */
|
||||
typedef uint8_t trefs_t; /**< Thread references counter. */
|
||||
|
|
|
@ -29,14 +29,11 @@
|
|||
#ifndef _CHTYPES_H_
|
||||
#define _CHTYPES_H_
|
||||
|
||||
#define __need_NULL
|
||||
#define __need_size_t
|
||||
#define __need_ptrdiff_t
|
||||
#include <stddef.h>
|
||||
|
||||
#include <stdint.h>
|
||||
#include <stdbool.h>
|
||||
|
||||
typedef int32_t bool_t; /**< Fast boolean type. */
|
||||
typedef bool bool_t; /**< Fast boolean type. */
|
||||
typedef uint8_t tmode_t; /**< Thread flags. */
|
||||
typedef uint8_t tstate_t; /**< Thread state. */
|
||||
typedef uint8_t trefs_t; /**< Thread references counter. */
|
||||
|
|
|
@ -29,14 +29,9 @@
|
|||
#ifndef _CHTYPES_H_
|
||||
#define _CHTYPES_H_
|
||||
|
||||
#define __need_NULL
|
||||
#define __need_size_t
|
||||
#include <stddef.h>
|
||||
|
||||
//#if !defined(_STDINT_H) && !defined(__STDINT_H_)
|
||||
//#include <stdint.h>
|
||||
//#endif
|
||||
|
||||
typedef unsigned char uint8t; /**< C99-style boolean. */
|
||||
typedef unsigned char uint8_t; /**< C99-style 8 bits unsigned. */
|
||||
typedef signed char int8_t; /**< C99-style 8 bits signed. */
|
||||
typedef unsigned int uint16_t; /**< C99-style 16 bits unsigned. */
|
||||
|
@ -47,7 +42,15 @@ typedef uint8_t uint_fast8_t; /**< C99-style 8 bits unsigned. */
|
|||
typedef uint16_t uint_fast16_t; /**< C99-style 16 bits unsigned. */
|
||||
typedef uint32_t uint_fast32_t; /**< C99-style 32 bits unsigned. */
|
||||
|
||||
typedef int8_t bool_t; /**< Fast boolean type. */
|
||||
#if !defined(false) || defined(__DOXYGEN__)
|
||||
#define false 0
|
||||
#endif
|
||||
|
||||
#if !defined(true) || defined(__DOXYGEN__)
|
||||
#define true (!false)
|
||||
#endif
|
||||
|
||||
typedef bool bool_t; /**< Fast boolean type. */
|
||||
typedef uint8_t tmode_t; /**< Thread flags. */
|
||||
typedef uint8_t tstate_t; /**< Thread state. */
|
||||
typedef uint8_t trefs_t; /**< Thread references counter. */
|
||||
|
|
Loading…
Reference in New Issue