Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/arch/arm32/include/types.h

    rd99c1d2 rc09adc10  
    2727 */
    2828
    29 /** @addtogroup arm32
     29/** @addtogroup arm32   
    3030 * @{
    3131 */
     
    3838
    3939#ifndef DOXYGEN
    40         #define ATTRIBUTE_PACKED __attribute__((packed))
     40#       define ATTRIBUTE_PACKED __attribute__ ((packed))
    4141#else
    42         #define ATTRIBUTE_PACKED
     42#       define ATTRIBUTE_PACKED
    4343#endif
     44
     45typedef signed char int8_t;
     46typedef signed short int16_t;
     47typedef signed long int32_t;
     48typedef signed long long int64_t;
     49
     50typedef unsigned char uint8_t;
     51typedef unsigned short uint16_t;
     52typedef unsigned long uint32_t;
     53typedef unsigned long long uint64_t;
    4454
    4555typedef uint32_t size_t;
     
    5262typedef uint32_t unative_t;
    5363typedef int32_t native_t;
    54 typedef uint32_t atomic_count_t;
    5564
    5665typedef struct {
    5766} fncptr_t;
    5867
    59 #define PRIp "x"  /**< Format for uintptr_t. */
    60 #define PRIs "u"  /**< Format for size_t. */
     68#define PRIp "x"        /**< Format for uintptr_t. */
     69#define PRIs "u"        /**< Format for size_t. */
    6170
    62 #define PRId8 "d"     /**< Format for int8_t. */
    63 #define PRId16 "d"    /**< Format for int16_t. */
    64 #define PRId32 "d"    /**< Format for int32_t. */
    65 #define PRId64 "lld"  /**< Format for int64_t. */
    66 #define PRIdn "d"     /**< Format for native_t. */
     71#define PRId8 "d"       /**< Format for int8_t. */
     72#define PRId16 "d"      /**< Format for int16_t. */
     73#define PRId32 "d"      /**< Format for int32_t. */
     74#define PRId64 "lld"    /**< Format for int64_t. */
     75#define PRIdn "d"       /**< Format for native_t. */
    6776
    68 #define PRIu8 "u"     /**< Format for uint8_t. */
    69 #define PRIu16 "u"    /**< Format for uint16_t. */
    70 #define PRIu32 "u"    /**< Format for uint32_t. */
    71 #define PRIu64 "llu"  /**< Format for uint64_t. */
    72 #define PRIun "u"     /**< Format for unative_t. */
     77#define PRIu8 "u"       /**< Format for uint8_t. */
     78#define PRIu16 "u"      /**< Format for uint16_t. */
     79#define PRIu32 "u"      /**< Format for uint32_t. */
     80#define PRIu64 "llu"    /**< Format for uint64_t. */
     81#define PRIun "u"       /**< Format for unative_t. */
    7382
    74 #define PRIx8 "x"     /**< Format for hexadecimal (u)int8_t. */
    75 #define PRIx16 "x"    /**< Format for hexadecimal (u)int16_t. */
    76 #define PRIx32 "x"    /**< Format for hexadecimal (u)uint32_t. */
    77 #define PRIx64 "llx"  /**< Format for hexadecimal (u)int64_t. */
    78 #define PRIxn "x"     /**< Format for hexadecimal (u)native_t. */
     83#define PRIx8 "x"       /**< Format for hexadecimal (u)int8_t. */
     84#define PRIx16 "x"      /**< Format for hexadecimal (u)int16_t. */
     85#define PRIx32 "x"      /**< Format for hexadecimal (u)uint32_t. */
     86#define PRIx64 "llx"    /**< Format for hexadecimal (u)int64_t. */
     87#define PRIxn "x"       /**< Format for hexadecimal (u)native_t. */
    7988
    8089#endif
Note: See TracChangeset for help on using the changeset viewer.