Skip to content

Commit

Permalink
tools: move lxc-checkpoint to API symbols only
Browse files Browse the repository at this point in the history
Closes #2073.

Signed-off-by: Christian Brauner <christian.brauner@ubuntu.com>
  • Loading branch information
Christian Brauner committed Feb 6, 2018
1 parent 6a342ca commit 7848517
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 8 deletions.
12 changes: 4 additions & 8 deletions src/lxc/tools/lxc_checkpoint.c
@@ -1,5 +1,4 @@
/*
*
* Copyright © 2014 Tycho Andersen <tycho.andersen@canonical.com>.
* Copyright © 2014 Canonical Ltd.
*
Expand All @@ -17,19 +16,18 @@
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/

#include <stdio.h>
#define _GNU_SOURCE
#include <errno.h>
#include <stdio.h>
#include <string.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/wait.h>

#include <lxc/lxccontainer.h>

#include "log.h"
#include "config.h"
#include "lxc.h"
#include "arguments.h"
#include "utils.h"
#include "tool_utils.h"

static char *checkpoint_dir = NULL;
static bool stop = false;
Expand Down Expand Up @@ -253,8 +251,6 @@ int main(int argc, char *argv[])
if (lxc_log_init(&log))
exit(EXIT_FAILURE);

lxc_log_options_no_override();

/* REMOVE IN LXC 3.0 */
setenv("LXC_UPDATE_CONFIG_FORMAT", "1", 0);

Expand Down
18 changes: 18 additions & 0 deletions src/lxc/tools/tool_utils.c
Expand Up @@ -276,6 +276,24 @@ int lxc_caps_up(void)

#endif

int wait_for_pid(pid_t pid)
{
int status, ret;

again:
ret = waitpid(pid, &status, 0);
if (ret == -1) {
if (errno == EINTR)
goto again;
return -1;
}
if (ret != pid)
goto again;
if (!WIFEXITED(status) || WEXITSTATUS(status) != 0)
return -1;
return 0;
}

int lxc_wait_for_pid_status(pid_t pid)
{
int status, ret;
Expand Down
1 change: 1 addition & 0 deletions src/lxc/tools/tool_utils.h
Expand Up @@ -123,6 +123,7 @@ static inline int lxc_caps_init(void) {
}
#endif

extern int wait_for_pid(pid_t pid);
extern int lxc_wait_for_pid_status(pid_t pid);
extern int lxc_safe_int(const char *numstr, int *converted);
extern int lxc_safe_long(const char *numstr, long int *converted);
Expand Down

0 comments on commit 7848517

Please sign in to comment.