aboutsummaryrefslogtreecommitdiff
path: root/server.c
diff options
context:
space:
mode:
authorFlavio Cruz <flaviocruz@gmail.com>2016-02-07 20:08:58 -0500
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2016-02-09 23:50:11 +0100
commite2e50a2471af7c8708d49323a3f000042a032b59 (patch)
tree05cf4b7abec488d81546ff9f4a9e7dabfd0c6630 /server.c
parentc01a23d17a84fc42caba4031241c050e4a533d3f (diff)
downloadmig-e2e50a2471af7c8708d49323a3f000042a032b59.tar.gz
mig-e2e50a2471af7c8708d49323a3f000042a032b59.tar.bz2
mig-e2e50a2471af7c8708d49323a3f000042a032b59.zip
Cast kernel server port arguments to the correct type.
* server.c: Add cast for ipc_port_t arguments that are handled differently. * type.c: Set itKernelPort when the mach_port_t is treated as a ipc_port_t. * type.h: Add itKernelPort to struct ipc_type.
Diffstat (limited to 'server.c')
-rw-r--r--server.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/server.c b/server.c
index a08795b..37cb6e0 100644
--- a/server.c
+++ b/server.c
@@ -749,6 +749,18 @@ WriteServerCallArg(FILE *file, const argument_t *arg)
const ipc_type_t *it = arg->argType;
boolean_t NeedClose = FALSE;
+ if (IsKernelServer) {
+ /* If the type (incl. array) is handled differently, then we need to
+ cast it to the real argument type. */
+ if (it->itKernelPort ||
+ it->itInLine && it->itVarArray && it->itElement->itKernelPort) {
+ /* Some arguments are transformed into the correct type already. */
+ if (!akCheckAll(arg->argKind, akbSendRcv|akbVarNeeded))
+ fprintf(file, "(%s%s)", it->itTransType,
+ arg->argByReferenceServer ? "*" : "");
+ }
+ }
+
if (arg->argByReferenceServer)
fprintf(file, "&");