diff options
| author | Justus Winter <4winter@informatik.uni-hamburg.de> | 2013-08-04 12:44:53 +0200 |
|---|---|---|
| committer | Justus Winter <4winter@informatik.uni-hamburg.de> | 2013-08-04 12:47:36 +0200 |
| commit | 215ee22f3c0d6c45403e562fee95d809547b4302 (patch) | |
| tree | 8792783aea9b57d7822396131538167b55e0e9f2 /persistent-hello.c | |
| parent | b71bdf9c357b562076f4ad21a8e52f160743ae49 (diff) | |
Prefix the reincarnation routines with reincarnation_
Diffstat (limited to 'persistent-hello.c')
| -rw-r--r-- | persistent-hello.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/persistent-hello.c b/persistent-hello.c index 6274e99..85f0335 100644 --- a/persistent-hello.c +++ b/persistent-hello.c @@ -243,7 +243,9 @@ parse_opt (int opt, char *arg, struct argp_state *state) if (reincarnation != MACH_PORT_NULL) { - error_t err = checkpoint (reincarnation, contents, contents_len); + error_t err = reincarnation_checkpoint (reincarnation, + contents, + contents_len); if (err) error (0, err, "checkpoint"); } @@ -311,7 +313,7 @@ main (int argc, char **argv) /* Get reincarnation image. */ char *image = NULL; size_t image_len = 0; - err = reincarnate (reincarnation, &image, &image_len); + err = reincarnation_reincarnate (reincarnation, &image, &image_len); if (err) error (3, err, "getting reincarnation image"); |
