From 6dc2e2decd0505cd30fa4adcfa40daf0f3586c70 Mon Sep 17 00:00:00 2001 From: Pavel Emelyanov Date: Tue, 27 Sep 2016 18:12:25 +0300 Subject: [PATCH] infect: Introduce skeleton for soon-to-be compel code We'll collect the compel code here and will move all these files into compel library by the last patch of this set. Signed-off-by: Pavel Emelyanov Signed-off-by: Andrei Vagin --- criu/Makefile.crtools | 1 + criu/include/infect.h | 3 +++ criu/infect.c | 1 + 3 files changed, 5 insertions(+) create mode 100644 criu/include/infect.h create mode 100644 criu/infect.c diff --git a/criu/Makefile.crtools b/criu/Makefile.crtools index 9f3041eef..41de00877 100644 --- a/criu/Makefile.crtools +++ b/criu/Makefile.crtools @@ -3,6 +3,7 @@ ccflags-y += -iquote compel/plugins/include ccflags-y += -iquote compel/include ccflags-y += -iquote compel/arch/$(ARCH)/plugins/std +obj-y += infect.o obj-y += action-scripts.o obj-y += external.o obj-y += aio.o diff --git a/criu/include/infect.h b/criu/include/infect.h new file mode 100644 index 000000000..1d2bdf532 --- /dev/null +++ b/criu/include/infect.h @@ -0,0 +1,3 @@ +#ifndef __COMPEL_INFECT_H__ +#define __COMPEL_INFECT_H__ +#endif diff --git a/criu/infect.c b/criu/infect.c new file mode 100644 index 000000000..ac3897c3e --- /dev/null +++ b/criu/infect.c @@ -0,0 +1 @@ +#include "infect.h"