Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
L
lxc
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Chen Yisong
lxc
Commits
0e35ab88
Unverified
Commit
0e35ab88
authored
Jul 21, 2020
by
Christian Brauner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
sync: hide unnecessary symbols
Signed-off-by:
Christian Brauner
<
christian.brauner@ubuntu.com
>
parent
c864bf04
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
75 additions
and
42 deletions
+75
-42
Makefile.am
src/lxc/Makefile.am
+46
-21
sync.h
src/lxc/sync.h
+23
-21
Makefile.am
src/tests/Makefile.am
+6
-0
No files found.
src/lxc/Makefile.am
View file @
0e35ab88
...
@@ -354,7 +354,8 @@ lxc_attach_SOURCES = tools/lxc_attach.c \
...
@@ -354,7 +354,8 @@ lxc_attach_SOURCES = tools/lxc_attach.c \
ringbuf.c ringbuf.h
\
ringbuf.c ringbuf.h
\
start.c start.h
\
start.c start.h
\
state.c state.h
\
state.c state.h
\
string_utils.c string_utils.h
string_utils.c string_utils.h
\
sync.c sync.h
if
ENABLE_SECCOMP
if
ENABLE_SECCOMP
lxc_attach_SOURCES
+=
seccomp.c lxcseccomp.h
lxc_attach_SOURCES
+=
seccomp.c lxcseccomp.h
endif
endif
...
@@ -383,7 +384,8 @@ lxc_autostart_SOURCES = tools/lxc_autostart.c \
...
@@ -383,7 +384,8 @@ lxc_autostart_SOURCES = tools/lxc_autostart.c \
ringbuf.c ringbuf.h
\
ringbuf.c ringbuf.h
\
start.c start.h
\
start.c start.h
\
state.c state.h
\
state.c state.h
\
string_utils.c string_utils.h
string_utils.c string_utils.h
\
sync.c sync.h
if
ENABLE_SECCOMP
if
ENABLE_SECCOMP
lxc_autostart_SOURCES
+=
seccomp.c lxcseccomp.h
lxc_autostart_SOURCES
+=
seccomp.c lxcseccomp.h
endif
endif
...
@@ -412,7 +414,8 @@ lxc_cgroup_SOURCES = tools/lxc_cgroup.c \
...
@@ -412,7 +414,8 @@ lxc_cgroup_SOURCES = tools/lxc_cgroup.c \
ringbuf.c ringbuf.h
\
ringbuf.c ringbuf.h
\
start.c start.h
\
start.c start.h
\
state.c state.h
\
state.c state.h
\
string_utils.c string_utils.h
string_utils.c string_utils.h
\
sync.c sync.h
if
ENABLE_SECCOMP
if
ENABLE_SECCOMP
lxc_cgroup_SOURCES
+=
seccomp.c lxcseccomp.h
lxc_cgroup_SOURCES
+=
seccomp.c lxcseccomp.h
endif
endif
...
@@ -441,7 +444,8 @@ lxc_config_SOURCES = tools/lxc_config.c \
...
@@ -441,7 +444,8 @@ lxc_config_SOURCES = tools/lxc_config.c \
ringbuf.c ringbuf.h
\
ringbuf.c ringbuf.h
\
start.c start.h
\
start.c start.h
\
state.c state.h
\
state.c state.h
\
string_utils.c string_utils.h
string_utils.c string_utils.h
\
sync.c sync.h
if
ENABLE_SECCOMP
if
ENABLE_SECCOMP
lxc_config_SOURCES
+=
seccomp.c lxcseccomp.h
lxc_config_SOURCES
+=
seccomp.c lxcseccomp.h
endif
endif
...
@@ -470,7 +474,8 @@ lxc_console_SOURCES = tools/lxc_console.c \
...
@@ -470,7 +474,8 @@ lxc_console_SOURCES = tools/lxc_console.c \
ringbuf.c ringbuf.h
\
ringbuf.c ringbuf.h
\
start.c start.h
\
start.c start.h
\
state.c state.h
\
state.c state.h
\
string_utils.c string_utils.h
string_utils.c string_utils.h
\
sync.c sync.h
if
ENABLE_SECCOMP
if
ENABLE_SECCOMP
lxc_console_SOURCES
+=
seccomp.c lxcseccomp.h
lxc_console_SOURCES
+=
seccomp.c lxcseccomp.h
endif
endif
...
@@ -499,7 +504,8 @@ lxc_destroy_SOURCES = tools/lxc_destroy.c \
...
@@ -499,7 +504,8 @@ lxc_destroy_SOURCES = tools/lxc_destroy.c \
ringbuf.c ringbuf.h
\
ringbuf.c ringbuf.h
\
start.c start.h
\
start.c start.h
\
state.c state.h
\
state.c state.h
\
string_utils.c string_utils.h
string_utils.c string_utils.h
\
sync.c sync.h
if
ENABLE_SECCOMP
if
ENABLE_SECCOMP
lxc_destroy_SOURCES
+=
seccomp.c lxcseccomp.h
lxc_destroy_SOURCES
+=
seccomp.c lxcseccomp.h
endif
endif
...
@@ -528,7 +534,8 @@ lxc_device_SOURCES = tools/lxc_device.c \
...
@@ -528,7 +534,8 @@ lxc_device_SOURCES = tools/lxc_device.c \
ringbuf.c ringbuf.h
\
ringbuf.c ringbuf.h
\
start.c start.h
\
start.c start.h
\
state.c state.h
\
state.c state.h
\
string_utils.c string_utils.h
string_utils.c string_utils.h
\
sync.c sync.h
if
ENABLE_SECCOMP
if
ENABLE_SECCOMP
lxc_device_SOURCES
+=
seccomp.c lxcseccomp.h
lxc_device_SOURCES
+=
seccomp.c lxcseccomp.h
endif
endif
...
@@ -557,7 +564,8 @@ lxc_execute_SOURCES = tools/lxc_execute.c \
...
@@ -557,7 +564,8 @@ lxc_execute_SOURCES = tools/lxc_execute.c \
ringbuf.c ringbuf.h
\
ringbuf.c ringbuf.h
\
start.c start.h
\
start.c start.h
\
state.c state.h
\
state.c state.h
\
string_utils.c string_utils.h
string_utils.c string_utils.h
\
sync.c sync.h
if
ENABLE_SECCOMP
if
ENABLE_SECCOMP
lxc_execute_SOURCES
+=
seccomp.c lxcseccomp.h
lxc_execute_SOURCES
+=
seccomp.c lxcseccomp.h
endif
endif
...
@@ -586,7 +594,8 @@ lxc_freeze_SOURCES = tools/lxc_freeze.c \
...
@@ -586,7 +594,8 @@ lxc_freeze_SOURCES = tools/lxc_freeze.c \
ringbuf.c ringbuf.h
\
ringbuf.c ringbuf.h
\
start.c start.h
\
start.c start.h
\
state.c state.h
\
state.c state.h
\
string_utils.c string_utils.h
string_utils.c string_utils.h
\
sync.c sync.h
if
ENABLE_SECCOMP
if
ENABLE_SECCOMP
lxc_freeze_SOURCES
+=
seccomp.c lxcseccomp.h
lxc_freeze_SOURCES
+=
seccomp.c lxcseccomp.h
endif
endif
...
@@ -615,7 +624,8 @@ lxc_info_SOURCES = tools/lxc_info.c \
...
@@ -615,7 +624,8 @@ lxc_info_SOURCES = tools/lxc_info.c \
ringbuf.c ringbuf.h
\
ringbuf.c ringbuf.h
\
start.c start.h
\
start.c start.h
\
state.c state.h
\
state.c state.h
\
string_utils.c string_utils.h
string_utils.c string_utils.h
\
sync.c sync.h
if
ENABLE_SECCOMP
if
ENABLE_SECCOMP
lxc_info_SOURCES
+=
seccomp.c lxcseccomp.h
lxc_info_SOURCES
+=
seccomp.c lxcseccomp.h
endif
endif
...
@@ -645,7 +655,8 @@ lxc_monitor_SOURCES = tools/lxc_monitor.c \
...
@@ -645,7 +655,8 @@ lxc_monitor_SOURCES = tools/lxc_monitor.c \
ringbuf.c ringbuf.h
\
ringbuf.c ringbuf.h
\
start.c start.h
\
start.c start.h
\
state.c state.h
\
state.c state.h
\
string_utils.c string_utils.h
string_utils.c string_utils.h
\
sync.c sync.h
if
ENABLE_SECCOMP
if
ENABLE_SECCOMP
lxc_monitor_SOURCES
+=
seccomp.c lxcseccomp.h
lxc_monitor_SOURCES
+=
seccomp.c lxcseccomp.h
endif
endif
...
@@ -675,7 +686,8 @@ lxc_ls_SOURCES = tools/lxc_ls.c \
...
@@ -675,7 +686,8 @@ lxc_ls_SOURCES = tools/lxc_ls.c \
ringbuf.c ringbuf.h
\
ringbuf.c ringbuf.h
\
start.c start.h
\
start.c start.h
\
state.c state.h
\
state.c state.h
\
string_utils.c string_utils.h
string_utils.c string_utils.h
\
sync.c sync.h
if
ENABLE_SECCOMP
if
ENABLE_SECCOMP
lxc_ls_SOURCES
+=
seccomp.c lxcseccomp.h
lxc_ls_SOURCES
+=
seccomp.c lxcseccomp.h
endif
endif
...
@@ -705,7 +717,8 @@ lxc_copy_SOURCES = tools/lxc_copy.c \
...
@@ -705,7 +717,8 @@ lxc_copy_SOURCES = tools/lxc_copy.c \
start.c start.h
\
start.c start.h
\
state.c state.h
\
state.c state.h
\
storage/storage_utils.c storage/storage_utils.h
\
storage/storage_utils.c storage/storage_utils.h
\
string_utils.c string_utils.h
string_utils.c string_utils.h
\
sync.c sync.h
if
ENABLE_SECCOMP
if
ENABLE_SECCOMP
lxc_copy_SOURCES
+=
seccomp.c lxcseccomp.h
lxc_copy_SOURCES
+=
seccomp.c lxcseccomp.h
endif
endif
...
@@ -734,7 +747,8 @@ lxc_start_SOURCES = tools/lxc_start.c \
...
@@ -734,7 +747,8 @@ lxc_start_SOURCES = tools/lxc_start.c \
ringbuf.c ringbuf.h
\
ringbuf.c ringbuf.h
\
start.c start.h
\
start.c start.h
\
state.c state.h
\
state.c state.h
\
string_utils.c string_utils.h
string_utils.c string_utils.h
\
sync.c sync.h
if
ENABLE_SECCOMP
if
ENABLE_SECCOMP
lxc_start_SOURCES
+=
seccomp.c lxcseccomp.h
lxc_start_SOURCES
+=
seccomp.c lxcseccomp.h
endif
endif
...
@@ -763,7 +777,8 @@ lxc_stop_SOURCES = tools/lxc_stop.c \
...
@@ -763,7 +777,8 @@ lxc_stop_SOURCES = tools/lxc_stop.c \
ringbuf.c ringbuf.h
\
ringbuf.c ringbuf.h
\
start.c start.h
\
start.c start.h
\
state.c state.h
\
state.c state.h
\
string_utils.c string_utils.h
string_utils.c string_utils.h
\
sync.c sync.h
if
ENABLE_SECCOMP
if
ENABLE_SECCOMP
lxc_stop_SOURCES
+=
seccomp.c lxcseccomp.h
lxc_stop_SOURCES
+=
seccomp.c lxcseccomp.h
endif
endif
...
@@ -792,7 +807,8 @@ lxc_top_SOURCES = tools/lxc_top.c \
...
@@ -792,7 +807,8 @@ lxc_top_SOURCES = tools/lxc_top.c \
ringbuf.c ringbuf.h
\
ringbuf.c ringbuf.h
\
start.c start.h
\
start.c start.h
\
state.c state.h
\
state.c state.h
\
string_utils.c string_utils.h
string_utils.c string_utils.h
\
sync.c sync.h
if
ENABLE_SECCOMP
if
ENABLE_SECCOMP
lxc_top_SOURCES
+=
seccomp.c lxcseccomp.h
lxc_top_SOURCES
+=
seccomp.c lxcseccomp.h
endif
endif
...
@@ -821,7 +837,8 @@ lxc_unfreeze_SOURCES = tools/lxc_unfreeze.c \
...
@@ -821,7 +837,8 @@ lxc_unfreeze_SOURCES = tools/lxc_unfreeze.c \
ringbuf.c ringbuf.h
\
ringbuf.c ringbuf.h
\
start.c start.h
\
start.c start.h
\
state.c state.h
\
state.c state.h
\
string_utils.c string_utils.h
string_utils.c string_utils.h
\
sync.c sync.h
if
ENABLE_SECCOMP
if
ENABLE_SECCOMP
lxc_unfreeze_SOURCES
+=
seccomp.c lxcseccomp.h
lxc_unfreeze_SOURCES
+=
seccomp.c lxcseccomp.h
endif
endif
...
@@ -851,6 +868,7 @@ lxc_unshare_SOURCES = tools/lxc_unshare.c \
...
@@ -851,6 +868,7 @@ lxc_unshare_SOURCES = tools/lxc_unshare.c \
start.c start.h
\
start.c start.h
\
state.c state.h
\
state.c state.h
\
string_utils.c string_utils.h
\
string_utils.c string_utils.h
\
sync.c sync.h
\
syscall_numbers.h
\
syscall_numbers.h
\
syscall_wrappers.h
syscall_wrappers.h
if
ENABLE_SECCOMP
if
ENABLE_SECCOMP
...
@@ -881,7 +899,8 @@ lxc_wait_SOURCES = tools/lxc_wait.c \
...
@@ -881,7 +899,8 @@ lxc_wait_SOURCES = tools/lxc_wait.c \
ringbuf.c ringbuf.h
\
ringbuf.c ringbuf.h
\
start.c start.h
\
start.c start.h
\
state.c state.h
\
state.c state.h
\
string_utils.c string_utils.h
string_utils.c string_utils.h
\
sync.c sync.h
if
ENABLE_SECCOMP
if
ENABLE_SECCOMP
lxc_wait_SOURCES
+=
seccomp.c lxcseccomp.h
lxc_wait_SOURCES
+=
seccomp.c lxcseccomp.h
endif
endif
...
@@ -911,7 +930,8 @@ lxc_create_SOURCES = tools/lxc_create.c \
...
@@ -911,7 +930,8 @@ lxc_create_SOURCES = tools/lxc_create.c \
start.c start.h
\
start.c start.h
\
state.c state.h
\
state.c state.h
\
storage/storage_utils.c storage/storage_utils.h
\
storage/storage_utils.c storage/storage_utils.h
\
string_utils.c string_utils.h
string_utils.c string_utils.h
\
sync.c sync.h
if
ENABLE_SECCOMP
if
ENABLE_SECCOMP
lxc_create_SOURCES
+=
seccomp.c lxcseccomp.h
lxc_create_SOURCES
+=
seccomp.c lxcseccomp.h
endif
endif
...
@@ -940,7 +960,8 @@ lxc_snapshot_SOURCES = tools/lxc_snapshot.c \
...
@@ -940,7 +960,8 @@ lxc_snapshot_SOURCES = tools/lxc_snapshot.c \
ringbuf.c ringbuf.h
\
ringbuf.c ringbuf.h
\
start.c start.h
\
start.c start.h
\
state.c state.h
\
state.c state.h
\
string_utils.c string_utils.h
string_utils.c string_utils.h
\
sync.c sync.h
if
ENABLE_SECCOMP
if
ENABLE_SECCOMP
lxc_snapshot_SOURCES
+=
seccomp.c lxcseccomp.h
lxc_snapshot_SOURCES
+=
seccomp.c lxcseccomp.h
endif
endif
...
@@ -969,7 +990,8 @@ lxc_checkpoint_SOURCES = tools/lxc_checkpoint.c \
...
@@ -969,7 +990,8 @@ lxc_checkpoint_SOURCES = tools/lxc_checkpoint.c \
ringbuf.c ringbuf.h
\
ringbuf.c ringbuf.h
\
start.c start.h
\
start.c start.h
\
state.c state.h
\
state.c state.h
\
string_utils.c string_utils.h
string_utils.c string_utils.h
\
sync.c sync.h
if
ENABLE_SECCOMP
if
ENABLE_SECCOMP
lxc_checkpoint_SOURCES
+=
seccomp.c lxcseccomp.h
lxc_checkpoint_SOURCES
+=
seccomp.c lxcseccomp.h
endif
endif
...
@@ -1021,6 +1043,7 @@ lxc_monitord_SOURCES = cmd/lxc_monitord.c \
...
@@ -1021,6 +1043,7 @@ lxc_monitord_SOURCES = cmd/lxc_monitord.c \
start.c start.h
\
start.c start.h
\
state.c state.h
\
state.c state.h
\
string_utils.c string_utils.h
\
string_utils.c string_utils.h
\
sync.c sync.h
\
syscall_numbers.h
\
syscall_numbers.h
\
utils.c utils.h
utils.c utils.h
if
ENABLE_SECCOMP
if
ENABLE_SECCOMP
...
@@ -1053,6 +1076,7 @@ lxc_user_nic_SOURCES = cmd/lxc_user_nic.c \
...
@@ -1053,6 +1076,7 @@ lxc_user_nic_SOURCES = cmd/lxc_user_nic.c \
start.c start.h
\
start.c start.h
\
state.c state.h
\
state.c state.h
\
string_utils.c string_utils.h
\
string_utils.c string_utils.h
\
sync.c sync.h
\
syscall_numbers.h
\
syscall_numbers.h
\
syscall_wrappers.h
syscall_wrappers.h
if
ENABLE_SECCOMP
if
ENABLE_SECCOMP
...
@@ -1086,6 +1110,7 @@ lxc_usernsexec_SOURCES = cmd/lxc_usernsexec.c \
...
@@ -1086,6 +1110,7 @@ lxc_usernsexec_SOURCES = cmd/lxc_usernsexec.c \
start.c start.h
\
start.c start.h
\
state.c state.h
\
state.c state.h
\
string_utils.c string_utils.h
\
string_utils.c string_utils.h
\
sync.c sync.h
\
syscall_wrappers.h
\
syscall_wrappers.h
\
utils.c utils.h
utils.c utils.h
if
ENABLE_SECCOMP
if
ENABLE_SECCOMP
...
...
src/lxc/sync.h
View file @
0e35ab88
...
@@ -3,30 +3,32 @@
...
@@ -3,30 +3,32 @@
#ifndef __LXC_SYNC_H
#ifndef __LXC_SYNC_H
#define __LXC_SYNC_H
#define __LXC_SYNC_H
#include "compiler.h"
struct
lxc_handler
;
struct
lxc_handler
;
enum
{
enum
{
LXC_SYNC_STARTUP
,
LXC_SYNC_STARTUP
=
0
,
LXC_SYNC_CONFIGURE
,
LXC_SYNC_CONFIGURE
=
1
,
LXC_SYNC_POST_CONFIGURE
,
LXC_SYNC_POST_CONFIGURE
=
2
,
LXC_SYNC_CGROUP
,
LXC_SYNC_CGROUP
=
3
,
LXC_SYNC_CGROUP_UNSHARE
,
LXC_SYNC_CGROUP_UNSHARE
=
4
,
LXC_SYNC_CGROUP_LIMITS
,
LXC_SYNC_CGROUP_LIMITS
=
5
,
LXC_SYNC_READY_START
,
LXC_SYNC_READY_START
=
6
,
LXC_SYNC_RESTART
,
LXC_SYNC_RESTART
=
7
,
LXC_SYNC_POST_RESTART
,
LXC_SYNC_POST_RESTART
=
8
,
LXC_SYNC_ERROR
=
-
1
/* Used to report errors from another process */
LXC_SYNC_ERROR
=
-
1
/* Used to report errors from another process */
};
};
int
lxc_sync_init
(
struct
lxc_handler
*
handler
);
__hidden
extern
int
lxc_sync_init
(
struct
lxc_handler
*
handler
);
void
lxc_sync_fini
(
struct
lxc_handler
*
);
__hidden
extern
void
lxc_sync_fini
(
struct
lxc_handler
*
);
void
lxc_sync_fini_parent
(
struct
lxc_handler
*
);
__hidden
extern
void
lxc_sync_fini_parent
(
struct
lxc_handler
*
);
void
lxc_sync_fini_child
(
struct
lxc_handler
*
);
__hidden
extern
void
lxc_sync_fini_child
(
struct
lxc_handler
*
);
int
lxc_sync_wake_child
(
struct
lxc_handler
*
,
int
);
__hidden
extern
int
lxc_sync_wake_child
(
struct
lxc_handler
*
,
int
);
int
lxc_sync_wait_child
(
struct
lxc_handler
*
,
int
);
__hidden
extern
int
lxc_sync_wait_child
(
struct
lxc_handler
*
,
int
);
int
lxc_sync_wake_parent
(
struct
lxc_handler
*
,
int
);
__hidden
extern
int
lxc_sync_wake_parent
(
struct
lxc_handler
*
,
int
);
int
lxc_sync_wait_parent
(
struct
lxc_handler
*
,
int
);
__hidden
extern
int
lxc_sync_wait_parent
(
struct
lxc_handler
*
,
int
);
int
lxc_sync_barrier_parent
(
struct
lxc_handler
*
,
int
);
__hidden
extern
int
lxc_sync_barrier_parent
(
struct
lxc_handler
*
,
int
);
int
lxc_sync_barrier_child
(
struct
lxc_handler
*
,
int
);
__hidden
extern
int
lxc_sync_barrier_child
(
struct
lxc_handler
*
,
int
);
#endif
#endif
/* __LXC_SYNC_H */
src/tests/Makefile.am
View file @
0e35ab88
...
@@ -30,6 +30,7 @@ lxc_test_api_reboot_SOURCES = api_reboot.c \
...
@@ -30,6 +30,7 @@ lxc_test_api_reboot_SOURCES = api_reboot.c \
../lxc/ringbuf.c ../lxc/ringbuf.h
\
../lxc/ringbuf.c ../lxc/ringbuf.h
\
../lxc/start.c ../lxc/start.h
\
../lxc/start.c ../lxc/start.h
\
../lxc/state.c ../lxc/state.h
\
../lxc/state.c ../lxc/state.h
\
../lxc/sync.c ../lxc/sync.h
\
../lxc/string_utils.c ../lxc/string_utils.h
../lxc/string_utils.c ../lxc/string_utils.h
if
ENABLE_SECCOMP
if
ENABLE_SECCOMP
lxc_test_api_reboot_SOURCES
+=
../lxc/seccomp.c ../lxc/lxcseccomp.h
lxc_test_api_reboot_SOURCES
+=
../lxc/seccomp.c ../lxc/lxcseccomp.h
...
@@ -59,6 +60,7 @@ lxc_test_attach_SOURCES = attach.c \
...
@@ -59,6 +60,7 @@ lxc_test_attach_SOURCES = attach.c \
../lxc/ringbuf.c ../lxc/ringbuf.h
\
../lxc/ringbuf.c ../lxc/ringbuf.h
\
../lxc/start.c ../lxc/start.h
\
../lxc/start.c ../lxc/start.h
\
../lxc/state.c ../lxc/state.h
\
../lxc/state.c ../lxc/state.h
\
../lxc/sync.c ../lxc/sync.h
\
../lxc/string_utils.c ../lxc/string_utils.h
../lxc/string_utils.c ../lxc/string_utils.h
if
ENABLE_SECCOMP
if
ENABLE_SECCOMP
lxc_test_attach_SOURCES
+=
../lxc/seccomp.c ../lxc/lxcseccomp.h
lxc_test_attach_SOURCES
+=
../lxc/seccomp.c ../lxc/lxcseccomp.h
...
@@ -88,6 +90,7 @@ lxc_test_cgpath_SOURCES = cgpath.c \
...
@@ -88,6 +90,7 @@ lxc_test_cgpath_SOURCES = cgpath.c \
../lxc/ringbuf.c ../lxc/ringbuf.h
\
../lxc/ringbuf.c ../lxc/ringbuf.h
\
../lxc/start.c ../lxc/start.h
\
../lxc/start.c ../lxc/start.h
\
../lxc/state.c ../lxc/state.h
\
../lxc/state.c ../lxc/state.h
\
../lxc/sync.c ../lxc/sync.h
\
../lxc/string_utils.c ../lxc/string_utils.h
../lxc/string_utils.c ../lxc/string_utils.h
if
ENABLE_SECCOMP
if
ENABLE_SECCOMP
lxc_test_cgpath_SOURCES
+=
../lxc/seccomp.c ../lxc/lxcseccomp.h
lxc_test_cgpath_SOURCES
+=
../lxc/seccomp.c ../lxc/lxcseccomp.h
...
@@ -119,6 +122,7 @@ lxc_test_config_jump_table_SOURCES = config_jump_table.c \
...
@@ -119,6 +122,7 @@ lxc_test_config_jump_table_SOURCES = config_jump_table.c \
../lxc/ringbuf.c ../lxc/ringbuf.h
\
../lxc/ringbuf.c ../lxc/ringbuf.h
\
../lxc/start.c ../lxc/start.h
\
../lxc/start.c ../lxc/start.h
\
../lxc/state.c ../lxc/state.h
\
../lxc/state.c ../lxc/state.h
\
../lxc/sync.c ../lxc/sync.h
\
../lxc/string_utils.c ../lxc/string_utils.h
../lxc/string_utils.c ../lxc/string_utils.h
if
ENABLE_SECCOMP
if
ENABLE_SECCOMP
lxc_test_config_jump_table_SOURCES
+=
../lxc/seccomp.c ../lxc/lxcseccomp.h
lxc_test_config_jump_table_SOURCES
+=
../lxc/seccomp.c ../lxc/lxcseccomp.h
...
@@ -171,6 +175,7 @@ lxc_test_parse_config_file_SOURCES = parse_config_file.c \
...
@@ -171,6 +175,7 @@ lxc_test_parse_config_file_SOURCES = parse_config_file.c \
../lxc/ringbuf.c ../lxc/ringbuf.h
\
../lxc/ringbuf.c ../lxc/ringbuf.h
\
../lxc/start.c ../lxc/start.h
\
../lxc/start.c ../lxc/start.h
\
../lxc/state.c ../lxc/state.h
\
../lxc/state.c ../lxc/state.h
\
../lxc/sync.c ../lxc/sync.h
\
../lxc/string_utils.c ../lxc/string_utils.h
../lxc/string_utils.c ../lxc/string_utils.h
if
ENABLE_SECCOMP
if
ENABLE_SECCOMP
lxc_test_parse_config_file_SOURCES
+=
../lxc/seccomp.c ../lxc/lxcseccomp.h
lxc_test_parse_config_file_SOURCES
+=
../lxc/seccomp.c ../lxc/lxcseccomp.h
...
@@ -223,6 +228,7 @@ lxc_test_utils_SOURCES = lxc-test-utils.c \
...
@@ -223,6 +228,7 @@ lxc_test_utils_SOURCES = lxc-test-utils.c \
../lxc/ringbuf.c ../lxc/ringbuf.h
\
../lxc/ringbuf.c ../lxc/ringbuf.h
\
../lxc/start.c ../lxc/start.h
\
../lxc/start.c ../lxc/start.h
\
../lxc/state.c ../lxc/state.h
\
../lxc/state.c ../lxc/state.h
\
../lxc/sync.c ../lxc/sync.h
\
../lxc/string_utils.c ../lxc/string_utils.h
../lxc/string_utils.c ../lxc/string_utils.h
if
ENABLE_SECCOMP
if
ENABLE_SECCOMP
lxc_test_utils_SOURCES
+=
../lxc/seccomp.c ../lxc/lxcseccomp.h
lxc_test_utils_SOURCES
+=
../lxc/seccomp.c ../lxc/lxcseccomp.h
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment