summaryrefslogtreecommitdiff
path: root/src/import
diff options
context:
space:
mode:
authorRonny Chevalier <chevalier.ronny@gmail.com>2015-04-10 19:10:00 +0200
committerRonny Chevalier <chevalier.ronny@gmail.com>2015-04-10 23:54:49 +0200
commit0b452006de98294d1690f045f6ea2f7f6630ec3b (patch)
tree852bde2d8fd7dac434636bd25a276b5cf0eece9f /src/import
parent6482f6269c87d2249e52e889a63adbdd50f2d691 (diff)
shared: add process-util.[ch]
Diffstat (limited to 'src/import')
-rw-r--r--src/import/export-tar.c1
-rw-r--r--src/import/import-tar.c1
-rw-r--r--src/import/importd.c1
-rw-r--r--src/import/pull-common.c1
-rw-r--r--src/import/pull-dkr.c1
-rw-r--r--src/import/pull-tar.c1
6 files changed, 6 insertions, 0 deletions
diff --git a/src/import/export-tar.c b/src/import/export-tar.c
index 9bd0251696..73e1faecf3 100644
--- a/src/import/export-tar.c
+++ b/src/import/export-tar.c
@@ -27,6 +27,7 @@
#include "btrfs-util.h"
#include "import-common.h"
#include "export-tar.h"
+#include "process-util.h"
#define COPY_BUFFER_SIZE (16*1024)
diff --git a/src/import/import-tar.c b/src/import/import-tar.c
index 6ec5504265..12701bfcef 100644
--- a/src/import/import-tar.c
+++ b/src/import/import-tar.c
@@ -35,6 +35,7 @@
#include "import-compress.h"
#include "import-common.h"
#include "import-tar.h"
+#include "process-util.h"
struct TarImport {
sd_event *event;
diff --git a/src/import/importd.c b/src/import/importd.c
index 998e96008d..d4da4b29a2 100644
--- a/src/import/importd.c
+++ b/src/import/importd.c
@@ -33,6 +33,7 @@
#include "machine-pool.h"
#include "path-util.h"
#include "import-util.h"
+#include "process-util.h"
typedef struct Transfer Transfer;
typedef struct Manager Manager;
diff --git a/src/import/pull-common.c b/src/import/pull-common.c
index 57323531e2..59091ba7cb 100644
--- a/src/import/pull-common.c
+++ b/src/import/pull-common.c
@@ -29,6 +29,7 @@
#include "capability.h"
#include "pull-job.h"
#include "pull-common.h"
+#include "process-util.h"
#define FILENAME_ESCAPE "/.#\"\'"
diff --git a/src/import/pull-dkr.c b/src/import/pull-dkr.c
index c922bace45..0eefec562e 100644
--- a/src/import/pull-dkr.c
+++ b/src/import/pull-dkr.c
@@ -37,6 +37,7 @@
#include "pull-common.h"
#include "import-common.h"
#include "pull-dkr.h"
+#include "process-util.h"
typedef enum DkrProgress {
DKR_SEARCHING,
diff --git a/src/import/pull-tar.c b/src/import/pull-tar.c
index 0efa07d3f3..27a9af804d 100644
--- a/src/import/pull-tar.c
+++ b/src/import/pull-tar.c
@@ -38,6 +38,7 @@
#include "pull-job.h"
#include "pull-common.h"
#include "pull-tar.h"
+#include "process-util.h"
typedef enum TarProgress {
TAR_DOWNLOADING,