summaryrefslogtreecommitdiff
path: root/persistent-hello.c
diff options
context:
space:
mode:
authorJustus Winter <4winter@informatik.uni-hamburg.de>2013-08-04 12:44:53 +0200
committerJustus Winter <4winter@informatik.uni-hamburg.de>2013-08-04 12:47:36 +0200
commit215ee22f3c0d6c45403e562fee95d809547b4302 (patch)
tree8792783aea9b57d7822396131538167b55e0e9f2 /persistent-hello.c
parentb71bdf9c357b562076f4ad21a8e52f160743ae49 (diff)
Prefix the reincarnation routines with reincarnation_
Diffstat (limited to 'persistent-hello.c')
-rw-r--r--persistent-hello.c6
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");