diff options
author | Justus Winter <4winter@informatik.uni-hamburg.de> | 2013-11-28 11:08:39 +0100 |
---|---|---|
committer | Justus Winter <4winter@informatik.uni-hamburg.de> | 2014-12-07 15:38:18 +0100 |
commit | b6079b096eef4b7b347c85184592584c7ec4a022 (patch) | |
tree | 2221614b299089a9b8b4de7396755e16619e256d /exec/execmutations.h | |
parent | b11b002e1f08ad44273e9b139fab195e56bf6b6b (diff) |
exec: add payload-aware intrans functions
* exec/execmutations.h: Add mutators.
* exec/mig-decls.h (begin_using_bootinfo_payload): New function.
Diffstat (limited to 'exec/execmutations.h')
-rw-r--r-- | exec/execmutations.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/exec/execmutations.h b/exec/execmutations.h index 2acca7a0..0b5b8bb2 100644 --- a/exec/execmutations.h +++ b/exec/execmutations.h @@ -1,6 +1,7 @@ /* CPP definitions for MiG processing of exec.defs for exec server. */ #define FILE_INTRAN trivfs_protid_t trivfs_begin_using_protid (file_t) +#define FILE_INTRAN_PAYLOAD trivfs_protid_t trivfs_begin_using_protid_payload #define FILE_DESTRUCTOR trivfs_end_using_protid (trivfs_protid_t) #define EXEC_IMPORTS \ @@ -9,6 +10,8 @@ #define EXEC_STARTUP_INTRAN \ bootinfo_t begin_using_bootinfo_port (exec_startup_t) +#define EXEC_STARTUP_INTRAN_PAYLOAD \ + bootinfo_t begin_using_bootinfo_payload #define EXEC_STARTUP_DESTRUCTOR \ end_using_bootinfo (bootinfo_t) #define EXEC_STARTUP_IMPORTS \ |