mirror of
https://github.com/checkpoint-restore/criu.git
synced 2026-07-22 09:39:13 +00:00
No description
blcrcheckpointcontainercontainerscriudmtcphighly-availablelinuxmemory-trackingmigrationparasitepost-copyrestoresnapshotsuspenduserfaultfdzero-downtime
Errors building natively for x86_64 on Ubuntu 12.04:
session02.c:142:13: error: ‘PR_SET_CHILD_SUBREAPER’ undeclared
session03.c:175:13: error: ‘PR_SET_CHILD_SUBREAPER’ undeclared
vdso01.c:300: undefined reference to `clock_gettime'
Error cross compiling for arm using Linaro 14.01 toolchain:
gcc: warning: ‘-mcpu=’ is deprecated; use ‘-mtune=’ or ‘-march=’ instead
cc1: error: unrecognized command line option ‘-mfpu=neon’
cc1: error: unrecognized command line option ‘-marm’
criu-rtc.c:1:0: error: bad value (cortex-a15) for -mtune= switch
cc1: error: unrecognized command line option ‘-mfpu=neon’
cc1: error: unrecognized command line option ‘-marm’
criu-rtc.pb-c.c:1:0: error: bad value (cortex-a15) for -mtune= switch
Errors cross compiling for aarch64 using Linaro 14.01 toolchain:
maps007.c: In function ‘main’:
maps007.c:88:4: error: passing argument 1 of ‘atomic_read’ from incompatible pointer type [-Werror]
if (futex_get(&shm->stop) && atomic_get(&shm->delta) == MAX_DELTA)
^
In file included from ../../lib/lock.h:10:0,
from maps007.c:13:
../../lib/arch/aarch64/include/asm/atomic.h:14:19: note: expected ‘const atomic_t *’ but argument is of type ‘struct f
utex_t *’
static inline int atomic_read(const atomic_t *v)
^
ptrace.c: In function ‘main’:
ptrace.c:97:15: error: ‘PTRACE_GETREGS’ undeclared (first use in this function)
if (ptrace(PTRACE_GETREGS, stopped, NULL, regs)) {
^
Signed-off-by: Christopher Covington <cov@codeaurora.org>
Reviewed-by: Cyrill Gorcunov <gorcunov@openvz.org>
Signed-off-by: Pavel Emelyanov <xemul@parallels.com>
|
||
|---|---|---|
| arch | ||
| Documentation | ||
| include | ||
| lib | ||
| pie | ||
| protobuf | ||
| scripts | ||
| test | ||
| .gitignore | ||
| .mailmap | ||
| cgroup.c | ||
| COPYING | ||
| cr-check.c | ||
| cr-dedup.c | ||
| cr-dump.c | ||
| cr-exec.c | ||
| cr-restore.c | ||
| cr-service.c | ||
| cr-show.c | ||
| CREDITS | ||
| crtools | ||
| crtools.c | ||
| eventfd.c | ||
| eventpoll.c | ||
| fifo.c | ||
| file-ids.c | ||
| file-lock.c | ||
| files-ext.c | ||
| files-reg.c | ||
| files.c | ||
| fsnotify.c | ||
| image-desc.c | ||
| image.c | ||
| ipc_ns.c | ||
| irmap.c | ||
| kcmp-ids.c | ||
| kerndat.c | ||
| libnetlink.c | ||
| log.c | ||
| Makefile | ||
| Makefile.config | ||
| Makefile.crtools | ||
| Makefile.inc | ||
| mem.c | ||
| mount.c | ||
| namespaces.c | ||
| net.c | ||
| netfilter.c | ||
| page-pipe.c | ||
| page-read.c | ||
| page-xfer.c | ||
| pagemap-cache.c | ||
| parasite-syscall.c | ||
| pipes.c | ||
| plugin.c | ||
| proc_parse.c | ||
| protobuf-desc.c | ||
| protobuf.c | ||
| pstree.c | ||
| ptrace.c | ||
| rbtree.c | ||
| README | ||
| rst-malloc.c | ||
| sd-daemon.c | ||
| sd-daemon.h | ||
| security.c | ||
| shmem.c | ||
| sigframe.c | ||
| signalfd.c | ||
| sk-inet.c | ||
| sk-netlink.c | ||
| sk-packet.c | ||
| sk-queue.c | ||
| sk-tcp.c | ||
| sk-unix.c | ||
| sockets.c | ||
| stats.c | ||
| string.c | ||
| sysctl.c | ||
| tty.c | ||
| tun.c | ||
| util.c | ||
| uts_ns.c | ||
criu ==== An utility to checkpoint/restore tasks. Using this tool, you can freeze a running application (or part of it) and checkpoint it to a hard drive as a collection of files. You can then use the files to restore and run the application from the point it was frozen at. The distinctive feature of the CRIU project is that it is mainly implemented in user space. The project home is at http://criu.org Pages worth starting with are * Kernel configuration, compilation, etc: http://criu.org/Installation * A simple example of usage: http://criu.org/Simple_loop * More sophisticated example with graphical app: http://criu.org/VNC