Changeset b5e68c8 in mainline for kernel/arch/ia64/include/types.h


Ignore:
Timestamp:
2011-05-12T16:49:44Z (14 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
f36787d7
Parents:
e80329d6 (diff), 750636a (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge mainline changes.

File:
1 edited

Legend:

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

    re80329d6 rb5e68c8  
    3737
    3838typedef uint64_t size_t;
     39typedef int64_t ssize_t;
    3940
    4041typedef uint64_t uintptr_t;
     
    4344typedef uint64_t ipl_t;
    4445
    45 typedef uint64_t unative_t;
     46typedef uint64_t sysarg_t;
    4647typedef int64_t native_t;
    4748typedef uint64_t atomic_count_t;
    4849
    4950typedef struct {
    50         unative_t fnc;
    51         unative_t gp;
     51        sysarg_t fnc;
     52        sysarg_t gp;
    5253} __attribute__((may_alias)) fncptr_t;
    5354
    54 #define PRIp "lx"  /**< Format for uintptr_t. */
    55 #define PRIs "lu"  /**< Format for size_t. */
     55#define INTN_C(c)   INT64_C(c)
     56#define UINTN_C(c)  UINT64_C(c)
    5657
    57 #define PRId8 "d"    /**< Format for int8_t. */
    58 #define PRId16 "d"   /**< Format for int16_t. */
    59 #define PRId32 "d"   /**< Format for int32_t. */
    60 #define PRId64 "ld"  /**< Format for int64_t. */
    61 #define PRIdn "d"    /**< Format for native_t. */
    62 
    63 #define PRIu8 "u"    /**< Format for uint8_t. */
    64 #define PRIu16 "u"   /**< Format for uint16_t. */
    65 #define PRIu32 "u"   /**< Format for uint32_t. */
    66 #define PRIu64 "lu"  /**< Format for uint64_t. */
    67 #define PRIun "u"    /**< Format for unative_t. */
    68 
    69 #define PRIx8 "x"    /**< Format for hexadecimal (u)int8_t. */
    70 #define PRIx16 "x"   /**< Format for hexadecimal (u)int16_t. */
    71 #define PRIx32 "x"   /**< Format for hexadecimal (u)uint32_t. */
    72 #define PRIx64 "lx"  /**< Format for hexadecimal (u)int64_t. */
    73 #define PRIxn "x"    /**< Format for hexadecimal (u)native_t. */
     58#define PRIdn  PRId64  /**< Format for native_t. */
     59#define PRIun  PRIu64  /**< Format for sysarg_t. */
     60#define PRIxn  PRIx64  /**< Format for hexadecimal sysarg_t. */
     61#define PRIua  PRIu64  /**< Format for atomic_count_t. */
    7462
    7563#endif
Note: See TracChangeset for help on using the changeset viewer.