aboutsummaryrefslogtreecommitdiff
path: root/type.c
diff options
context:
space:
mode:
authorFlavio Cruz <flaviocruz@gmail.com>2022-12-19 10:18:25 -0500
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2022-12-21 12:35:46 +0100
commitc7654756ee191de3d495a5d716ffe9b09d22ba6c (patch)
tree7011d0c639dc71355559322992634feb9c694558 /type.c
parent73fbf2504ae606dda81372701a67dad6fee0865e (diff)
downloadmig-c7654756ee191de3d495a5d716ffe9b09d22ba6c.tar.gz
mig-c7654756ee191de3d495a5d716ffe9b09d22ba6c.tar.bz2
mig-c7654756ee191de3d495a5d716ffe9b09d22ba6c.zip
Provide intptr_t and uintptr_t as default types
Message-Id: <Y6CAwaY0IRqihOjU@mars>
Diffstat (limited to 'type.c')
-rw-r--r--type.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/type.c b/type.c
index f954de4..b104c66 100644
--- a/type.c
+++ b/type.c
@@ -57,6 +57,8 @@ ipc_type_t *itWaitTimeType; /* used for dummy WaitTime args */
ipc_type_t *itMsgOptionType; /* used for dummy MsgOption args */
ipc_type_t *itShortType; /* used for the short type */
ipc_type_t *itIntType; /* used for the int type */
+ipc_type_t *itUintPtrType; /* used for the uintptr_t type */
+ipc_type_t *itIntPtrType; /* used for the intptr_t type */
static bool types_initialized = false;
static ipc_type_t *list = itNULL;
@@ -960,6 +962,10 @@ init_type(void)
itInsert("short", itShortType);
itIntType = itCIntTypeDecl("int", sizeof_int);
itInsert("int", itIntType);
+ itUintPtrType = itCIntTypeDecl("uintptr_t", sizeof_uintptr_t);
+ itInsert("uintptr_t", itUintPtrType);
+ itIntPtrType = itCIntTypeDecl("intptr_t", sizeof_intptr_t);
+ itInsert("intptr_t", itIntPtrType);
}
/******************************************************