From: Daniel Lezcano <dlezcano@fr.ibm.com>
Added the plugin header for the checkpoint/restart.
That will allow to integrate different CR solutions.
Signed-off-by: Daniel Lezcano <dlezcano@fr.ibm.com>
--- /dev/null
+#ifndef _lxc_plugin_h
+#define _lxc_plugin_h
+
+#include <sys/types.h>
+
+extern int lxc_plugin_checkpoint(pid_t, const char *, unsigned long);
+extern int lxc_plugin_restart(pid_t, const char *, unsigned long);
+
+#endif