aboutsummaryrefslogtreecommitdiff
path: root/utils.h
diff options
context:
space:
mode:
authorSamuel Thibault <samuel.thibault@ens-lyon.org>2022-01-16 17:07:41 +0100
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2022-01-16 18:37:07 +0100
commitcf4bcc3f1435eafa3ed8b5fadfa9698033d1e2df (patch)
tree34b2cdc750ce7a51b7ee2a58f2d076e99d294f52 /utils.h
parent1724ae7c21a6840a402a685ceea7f3366788a516 (diff)
downloadmig-cf4bcc3f1435eafa3ed8b5fadfa9698033d1e2df.tar.gz
mig-cf4bcc3f1435eafa3ed8b5fadfa9698033d1e2df.tar.bz2
mig-cf4bcc3f1435eafa3ed8b5fadfa9698033d1e2df.zip
Also add const qualifiers on server side
Although in practice the buffers can be modified since they are from the message, it leads to missing const where it would otherwise make sense.
Diffstat (limited to 'utils.h')
-rw-r--r--utils.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/utils.h b/utils.h
index 3a4c832..0524f0c 100644
--- a/utils.h
+++ b/utils.h
@@ -54,6 +54,8 @@ extern const char *ReturnTypeStr(const routine_t *rt);
extern const char *FetchUserType(const ipc_type_t *it);
extern const char *FetchServerType(const ipc_type_t *it);
+extern const char *ServerVarQualifier(const argument_t *arg);
+
extern void WriteFieldDeclPrim(FILE *file, const argument_t *arg,
const char *(*tfunc)(const ipc_type_t *it));