Changeset eb522e8 in mainline for kernel/arch/sparc64/include/types.h


Ignore:
Timestamp:
2011-06-01T08:43:42Z (14 years ago)
Author:
Lubos Slovak <lubos.slovak@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
8d6c1f1
Parents:
9e2e715 (diff), e51a514 (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:

Huuuuuge merge from development - all the work actually :)

File:
1 edited

Legend:

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

    r9e2e715 reb522e8  
    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;
     
    5253typedef uint8_t asi_t;
    5354
    54 /** Formats for uintptr_t, size_t */
    55 #define PRIp  "llx"
    56 #define PRIs  "llu"
     55#define INTN_C(c)   INT64_C(c)
     56#define UINTN_C(c)  UINT64_C(c)
    5757
    58 /** Formats for (u)int8_t, (u)int16_t, (u)int32_t, (u)int64_t and (u)native_t */
    59 #define PRId8   "d"
    60 #define PRId16  "d"
    61 #define PRId32  "d"
    62 #define PRId64  "lld"
    63 #define PRIdn   "lld"
    64 
    65 #define PRIu8   "u"
    66 #define PRIu16  "u"
    67 #define PRIu32  "u"
    68 #define PRIu64  "llu"
    69 #define PRIun   "llu"
    70 
    71 #define PRIx8   "x"
    72 #define PRIx16  "x"
    73 #define PRIx32  "x"
    74 #define PRIx64  "llx"
    75 #define PRIxn   "llx"
     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. */
    7662
    7763#endif
Note: See TracChangeset for help on using the changeset viewer.