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
297b04e2
Unverified
Commit
297b04e2
authored
Jul 21, 2020
by
Christian Brauner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
uuid: hide unnecessary symbols
Signed-off-by:
Christian Brauner
<
christian.brauner@ubuntu.com
>
parent
6b7386e5
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
78 additions
and
42 deletions
+78
-42
Makefile.am
src/lxc/Makefile.am
+50
-25
uuid.h
src/lxc/uuid.h
+10
-8
Makefile.am
src/tests/Makefile.am
+18
-9
No files found.
src/lxc/Makefile.am
View file @
297b04e2
...
@@ -357,7 +357,8 @@ lxc_attach_SOURCES = tools/lxc_attach.c \
...
@@ -357,7 +357,8 @@ lxc_attach_SOURCES = tools/lxc_attach.c \
string_utils.c string_utils.h
\
string_utils.c string_utils.h
\
sync.c sync.h
\
sync.c sync.h
\
terminal.c terminal.h
\
terminal.c terminal.h
\
utils.c utils.h
utils.c utils.h
\
uuid.c uuid.h
if
ENABLE_SECCOMP
if
ENABLE_SECCOMP
lxc_attach_SOURCES
+=
seccomp.c lxcseccomp.h
lxc_attach_SOURCES
+=
seccomp.c lxcseccomp.h
endif
endif
...
@@ -389,7 +390,8 @@ lxc_autostart_SOURCES = tools/lxc_autostart.c \
...
@@ -389,7 +390,8 @@ lxc_autostart_SOURCES = tools/lxc_autostart.c \
string_utils.c string_utils.h
\
string_utils.c string_utils.h
\
sync.c sync.h
\
sync.c sync.h
\
terminal.c terminal.h
\
terminal.c terminal.h
\
utils.c utils.h
utils.c utils.h
\
uuid.c uuid.h
if
ENABLE_SECCOMP
if
ENABLE_SECCOMP
lxc_autostart_SOURCES
+=
seccomp.c lxcseccomp.h
lxc_autostart_SOURCES
+=
seccomp.c lxcseccomp.h
endif
endif
...
@@ -421,7 +423,8 @@ lxc_cgroup_SOURCES = tools/lxc_cgroup.c \
...
@@ -421,7 +423,8 @@ lxc_cgroup_SOURCES = tools/lxc_cgroup.c \
string_utils.c string_utils.h
\
string_utils.c string_utils.h
\
sync.c sync.h
\
sync.c sync.h
\
terminal.c terminal.h
\
terminal.c terminal.h
\
utils.c utils.h
utils.c utils.h
\
uuid.c uuid.h
if
ENABLE_SECCOMP
if
ENABLE_SECCOMP
lxc_cgroup_SOURCES
+=
seccomp.c lxcseccomp.h
lxc_cgroup_SOURCES
+=
seccomp.c lxcseccomp.h
endif
endif
...
@@ -453,7 +456,8 @@ lxc_config_SOURCES = tools/lxc_config.c \
...
@@ -453,7 +456,8 @@ lxc_config_SOURCES = tools/lxc_config.c \
string_utils.c string_utils.h
\
string_utils.c string_utils.h
\
sync.c sync.h
\
sync.c sync.h
\
terminal.c terminal.h
\
terminal.c terminal.h
\
utils.c utils.h
utils.c utils.h
\
uuid.c uuid.h
if
ENABLE_SECCOMP
if
ENABLE_SECCOMP
lxc_config_SOURCES
+=
seccomp.c lxcseccomp.h
lxc_config_SOURCES
+=
seccomp.c lxcseccomp.h
endif
endif
...
@@ -485,7 +489,8 @@ lxc_console_SOURCES = tools/lxc_console.c \
...
@@ -485,7 +489,8 @@ lxc_console_SOURCES = tools/lxc_console.c \
string_utils.c string_utils.h
\
string_utils.c string_utils.h
\
sync.c sync.h
\
sync.c sync.h
\
terminal.c terminal.h
\
terminal.c terminal.h
\
utils.c utils.h
utils.c utils.h
\
uuid.c uuid.h
if
ENABLE_SECCOMP
if
ENABLE_SECCOMP
lxc_console_SOURCES
+=
seccomp.c lxcseccomp.h
lxc_console_SOURCES
+=
seccomp.c lxcseccomp.h
endif
endif
...
@@ -517,7 +522,8 @@ lxc_destroy_SOURCES = tools/lxc_destroy.c \
...
@@ -517,7 +522,8 @@ lxc_destroy_SOURCES = tools/lxc_destroy.c \
string_utils.c string_utils.h
\
string_utils.c string_utils.h
\
sync.c sync.h
\
sync.c sync.h
\
terminal.c terminal.h
\
terminal.c terminal.h
\
utils.c utils.h
utils.c utils.h
\
uuid.c uuid.h
if
ENABLE_SECCOMP
if
ENABLE_SECCOMP
lxc_destroy_SOURCES
+=
seccomp.c lxcseccomp.h
lxc_destroy_SOURCES
+=
seccomp.c lxcseccomp.h
endif
endif
...
@@ -549,7 +555,8 @@ lxc_device_SOURCES = tools/lxc_device.c \
...
@@ -549,7 +555,8 @@ lxc_device_SOURCES = tools/lxc_device.c \
string_utils.c string_utils.h
\
string_utils.c string_utils.h
\
sync.c sync.h
\
sync.c sync.h
\
terminal.c terminal.h
\
terminal.c terminal.h
\
utils.c utils.h
utils.c utils.h
\
uuid.c uuid.h
if
ENABLE_SECCOMP
if
ENABLE_SECCOMP
lxc_device_SOURCES
+=
seccomp.c lxcseccomp.h
lxc_device_SOURCES
+=
seccomp.c lxcseccomp.h
endif
endif
...
@@ -581,7 +588,8 @@ lxc_execute_SOURCES = tools/lxc_execute.c \
...
@@ -581,7 +588,8 @@ lxc_execute_SOURCES = tools/lxc_execute.c \
string_utils.c string_utils.h
\
string_utils.c string_utils.h
\
sync.c sync.h
\
sync.c sync.h
\
terminal.c terminal.h
\
terminal.c terminal.h
\
utils.c utils.h
utils.c utils.h
\
uuid.c uuid.h
if
ENABLE_SECCOMP
if
ENABLE_SECCOMP
lxc_execute_SOURCES
+=
seccomp.c lxcseccomp.h
lxc_execute_SOURCES
+=
seccomp.c lxcseccomp.h
endif
endif
...
@@ -613,7 +621,8 @@ lxc_freeze_SOURCES = tools/lxc_freeze.c \
...
@@ -613,7 +621,8 @@ lxc_freeze_SOURCES = tools/lxc_freeze.c \
string_utils.c string_utils.h
\
string_utils.c string_utils.h
\
sync.c sync.h
\
sync.c sync.h
\
terminal.c terminal.h
\
terminal.c terminal.h
\
utils.c utils.h
utils.c utils.h
\
uuid.c uuid.h
if
ENABLE_SECCOMP
if
ENABLE_SECCOMP
lxc_freeze_SOURCES
+=
seccomp.c lxcseccomp.h
lxc_freeze_SOURCES
+=
seccomp.c lxcseccomp.h
endif
endif
...
@@ -645,7 +654,8 @@ lxc_info_SOURCES = tools/lxc_info.c \
...
@@ -645,7 +654,8 @@ lxc_info_SOURCES = tools/lxc_info.c \
string_utils.c string_utils.h
\
string_utils.c string_utils.h
\
sync.c sync.h
\
sync.c sync.h
\
terminal.c terminal.h
\
terminal.c terminal.h
\
utils.c utils.h
utils.c utils.h
\
uuid.c uuid.h
if
ENABLE_SECCOMP
if
ENABLE_SECCOMP
lxc_info_SOURCES
+=
seccomp.c lxcseccomp.h
lxc_info_SOURCES
+=
seccomp.c lxcseccomp.h
endif
endif
...
@@ -678,7 +688,8 @@ lxc_monitor_SOURCES = tools/lxc_monitor.c \
...
@@ -678,7 +688,8 @@ lxc_monitor_SOURCES = tools/lxc_monitor.c \
string_utils.c string_utils.h
\
string_utils.c string_utils.h
\
sync.c sync.h
\
sync.c sync.h
\
terminal.c terminal.h
\
terminal.c terminal.h
\
utils.c utils.h
utils.c utils.h
\
uuid.c uuid.h
if
ENABLE_SECCOMP
if
ENABLE_SECCOMP
lxc_monitor_SOURCES
+=
seccomp.c lxcseccomp.h
lxc_monitor_SOURCES
+=
seccomp.c lxcseccomp.h
endif
endif
...
@@ -711,7 +722,8 @@ lxc_ls_SOURCES = tools/lxc_ls.c \
...
@@ -711,7 +722,8 @@ lxc_ls_SOURCES = tools/lxc_ls.c \
string_utils.c string_utils.h
\
string_utils.c string_utils.h
\
sync.c sync.h
\
sync.c sync.h
\
terminal.c terminal.h
\
terminal.c terminal.h
\
utils.c utils.h
utils.c utils.h
\
uuid.c uuid.h
if
ENABLE_SECCOMP
if
ENABLE_SECCOMP
lxc_ls_SOURCES
+=
seccomp.c lxcseccomp.h
lxc_ls_SOURCES
+=
seccomp.c lxcseccomp.h
endif
endif
...
@@ -744,7 +756,8 @@ lxc_copy_SOURCES = tools/lxc_copy.c \
...
@@ -744,7 +756,8 @@ lxc_copy_SOURCES = tools/lxc_copy.c \
string_utils.c string_utils.h
\
string_utils.c string_utils.h
\
sync.c sync.h
\
sync.c sync.h
\
terminal.c terminal.h
\
terminal.c terminal.h
\
utils.c utils.h
utils.c utils.h
\
uuid.c uuid.h
if
ENABLE_SECCOMP
if
ENABLE_SECCOMP
lxc_copy_SOURCES
+=
seccomp.c lxcseccomp.h
lxc_copy_SOURCES
+=
seccomp.c lxcseccomp.h
endif
endif
...
@@ -776,7 +789,8 @@ lxc_start_SOURCES = tools/lxc_start.c \
...
@@ -776,7 +789,8 @@ lxc_start_SOURCES = tools/lxc_start.c \
string_utils.c string_utils.h
\
string_utils.c string_utils.h
\
sync.c sync.h
\
sync.c sync.h
\
terminal.c terminal.h
\
terminal.c terminal.h
\
utils.c utils.h
utils.c utils.h
\
uuid.c uuid.h
if
ENABLE_SECCOMP
if
ENABLE_SECCOMP
lxc_start_SOURCES
+=
seccomp.c lxcseccomp.h
lxc_start_SOURCES
+=
seccomp.c lxcseccomp.h
endif
endif
...
@@ -808,7 +822,8 @@ lxc_stop_SOURCES = tools/lxc_stop.c \
...
@@ -808,7 +822,8 @@ lxc_stop_SOURCES = tools/lxc_stop.c \
string_utils.c string_utils.h
\
string_utils.c string_utils.h
\
sync.c sync.h
\
sync.c sync.h
\
terminal.c terminal.h
\
terminal.c terminal.h
\
utils.c utils.h
utils.c utils.h
\
uuid.c uuid.h
if
ENABLE_SECCOMP
if
ENABLE_SECCOMP
lxc_stop_SOURCES
+=
seccomp.c lxcseccomp.h
lxc_stop_SOURCES
+=
seccomp.c lxcseccomp.h
endif
endif
...
@@ -840,7 +855,8 @@ lxc_top_SOURCES = tools/lxc_top.c \
...
@@ -840,7 +855,8 @@ lxc_top_SOURCES = tools/lxc_top.c \
string_utils.c string_utils.h
\
string_utils.c string_utils.h
\
sync.c sync.h
\
sync.c sync.h
\
terminal.c terminal.h
\
terminal.c terminal.h
\
utils.c utils.h
utils.c utils.h
\
uuid.c uuid.h
if
ENABLE_SECCOMP
if
ENABLE_SECCOMP
lxc_top_SOURCES
+=
seccomp.c lxcseccomp.h
lxc_top_SOURCES
+=
seccomp.c lxcseccomp.h
endif
endif
...
@@ -872,7 +888,8 @@ lxc_unfreeze_SOURCES = tools/lxc_unfreeze.c \
...
@@ -872,7 +888,8 @@ lxc_unfreeze_SOURCES = tools/lxc_unfreeze.c \
string_utils.c string_utils.h
\
string_utils.c string_utils.h
\
sync.c sync.h
\
sync.c sync.h
\
terminal.c terminal.h
\
terminal.c terminal.h
\
utils.c utils.h
utils.c utils.h
\
uuid.c uuid.h
if
ENABLE_SECCOMP
if
ENABLE_SECCOMP
lxc_unfreeze_SOURCES
+=
seccomp.c lxcseccomp.h
lxc_unfreeze_SOURCES
+=
seccomp.c lxcseccomp.h
endif
endif
...
@@ -906,7 +923,8 @@ lxc_unshare_SOURCES = tools/lxc_unshare.c \
...
@@ -906,7 +923,8 @@ lxc_unshare_SOURCES = tools/lxc_unshare.c \
syscall_numbers.h
\
syscall_numbers.h
\
syscall_wrappers.h
\
syscall_wrappers.h
\
terminal.c terminal.h
\
terminal.c terminal.h
\
utils.c utils.h
utils.c utils.h
\
uuid.c uuid.h
if
ENABLE_SECCOMP
if
ENABLE_SECCOMP
lxc_unshare_SOURCES
+=
seccomp.c lxcseccomp.h
lxc_unshare_SOURCES
+=
seccomp.c lxcseccomp.h
endif
endif
...
@@ -938,7 +956,8 @@ lxc_wait_SOURCES = tools/lxc_wait.c \
...
@@ -938,7 +956,8 @@ lxc_wait_SOURCES = tools/lxc_wait.c \
string_utils.c string_utils.h
\
string_utils.c string_utils.h
\
sync.c sync.h
\
sync.c sync.h
\
terminal.c terminal.h
\
terminal.c terminal.h
\
utils.c utils.h
utils.c utils.h
\
uuid.c uuid.h
if
ENABLE_SECCOMP
if
ENABLE_SECCOMP
lxc_wait_SOURCES
+=
seccomp.c lxcseccomp.h
lxc_wait_SOURCES
+=
seccomp.c lxcseccomp.h
endif
endif
...
@@ -971,7 +990,8 @@ lxc_create_SOURCES = tools/lxc_create.c \
...
@@ -971,7 +990,8 @@ lxc_create_SOURCES = tools/lxc_create.c \
string_utils.c string_utils.h
\
string_utils.c string_utils.h
\
sync.c sync.h
\
sync.c sync.h
\
terminal.c terminal.h
\
terminal.c terminal.h
\
utils.c utils.h
utils.c utils.h
\
uuid.c uuid.h
if
ENABLE_SECCOMP
if
ENABLE_SECCOMP
lxc_create_SOURCES
+=
seccomp.c lxcseccomp.h
lxc_create_SOURCES
+=
seccomp.c lxcseccomp.h
endif
endif
...
@@ -1003,7 +1023,8 @@ lxc_snapshot_SOURCES = tools/lxc_snapshot.c \
...
@@ -1003,7 +1023,8 @@ lxc_snapshot_SOURCES = tools/lxc_snapshot.c \
string_utils.c string_utils.h
\
string_utils.c string_utils.h
\
sync.c sync.h
\
sync.c sync.h
\
terminal.c terminal.h
\
terminal.c terminal.h
\
utils.c utils.h
utils.c utils.h
\
uuid.c uuid.h
if
ENABLE_SECCOMP
if
ENABLE_SECCOMP
lxc_snapshot_SOURCES
+=
seccomp.c lxcseccomp.h
lxc_snapshot_SOURCES
+=
seccomp.c lxcseccomp.h
endif
endif
...
@@ -1035,7 +1056,8 @@ lxc_checkpoint_SOURCES = tools/lxc_checkpoint.c \
...
@@ -1035,7 +1056,8 @@ lxc_checkpoint_SOURCES = tools/lxc_checkpoint.c \
string_utils.c string_utils.h
\
string_utils.c string_utils.h
\
sync.c sync.h
\
sync.c sync.h
\
terminal.c terminal.h
\
terminal.c terminal.h
\
utils.c utils.h
utils.c utils.h
\
uuid.c uuid.h
if
ENABLE_SECCOMP
if
ENABLE_SECCOMP
lxc_checkpoint_SOURCES
+=
seccomp.c lxcseccomp.h
lxc_checkpoint_SOURCES
+=
seccomp.c lxcseccomp.h
endif
endif
...
@@ -1090,7 +1112,8 @@ lxc_monitord_SOURCES = cmd/lxc_monitord.c \
...
@@ -1090,7 +1112,8 @@ lxc_monitord_SOURCES = cmd/lxc_monitord.c \
sync.c sync.h
\
sync.c sync.h
\
syscall_numbers.h
\
syscall_numbers.h
\
terminal.c terminal.h
\
terminal.c terminal.h
\
utils.c utils.h
utils.c utils.h
\
uuid.c uuid.h
if
ENABLE_SECCOMP
if
ENABLE_SECCOMP
lxc_monitord_SOURCES
+=
seccomp.c lxcseccomp.h
lxc_monitord_SOURCES
+=
seccomp.c lxcseccomp.h
endif
endif
...
@@ -1125,7 +1148,8 @@ lxc_user_nic_SOURCES = cmd/lxc_user_nic.c \
...
@@ -1125,7 +1148,8 @@ lxc_user_nic_SOURCES = cmd/lxc_user_nic.c \
syscall_numbers.h
\
syscall_numbers.h
\
syscall_wrappers.h
\
syscall_wrappers.h
\
terminal.c terminal.h
\
terminal.c terminal.h
\
utils.c utils.h
utils.c utils.h
\
uuid.c uuid.h
if
ENABLE_SECCOMP
if
ENABLE_SECCOMP
lxc_user_nic_SOURCES
+=
seccomp.c lxcseccomp.h
lxc_user_nic_SOURCES
+=
seccomp.c lxcseccomp.h
endif
endif
...
@@ -1160,7 +1184,8 @@ lxc_usernsexec_SOURCES = cmd/lxc_usernsexec.c \
...
@@ -1160,7 +1184,8 @@ lxc_usernsexec_SOURCES = cmd/lxc_usernsexec.c \
sync.c sync.h
\
sync.c sync.h
\
syscall_wrappers.h
\
syscall_wrappers.h
\
terminal.c terminal.h
\
terminal.c terminal.h
\
utils.c utils.h
utils.c utils.h
\
uuid.c uuid.h
if
ENABLE_SECCOMP
if
ENABLE_SECCOMP
lxc_usernsexec_SOURCES
+=
seccomp.c lxcseccomp.h
lxc_usernsexec_SOURCES
+=
seccomp.c lxcseccomp.h
endif
endif
...
...
src/lxc/uuid.h
View file @
297b04e2
...
@@ -9,16 +9,18 @@
...
@@ -9,16 +9,18 @@
#define __STDC_FORMAT_MACROS
#define __STDC_FORMAT_MACROS
#include <inttypes.h>
#include <inttypes.h>
#include "compiler.h"
typedef
union
lxc_id128
lxc_id128_t
;
typedef
union
lxc_id128
lxc_id128_t
;
union
lxc_id128
{
union
lxc_id128
{
uint8_t
bytes
[
16
];
uint8_t
bytes
[
16
];
uint64_t
qwords
[
2
];
uint64_t
qwords
[
2
];
}
}
;
;
extern
int
lxc_id128_randomize
(
lxc_id128_t
*
ret
);
__hidden
extern
int
lxc_id128_randomize
(
lxc_id128_t
*
ret
);
extern
int
lxc_id128_write
(
const
char
*
p
,
lxc_id128_t
id
);
__hidden
extern
int
lxc_id128_write
(
const
char
*
p
,
lxc_id128_t
id
);
extern
int
lxc_id128_write_fd
(
int
fd
,
lxc_id128_t
id
);
__hidden
extern
int
lxc_id128_write_fd
(
int
fd
,
lxc_id128_t
id
);
extern
char
*
id128_to_uuid_string
(
lxc_id128_t
id
,
char
s
[
37
]);
__hidden
extern
char
*
id128_to_uuid_string
(
lxc_id128_t
id
,
char
s
[
37
]);
#endif
/* __LXC_UUID_H */
#endif
/* __LXC_UUID_H */
src/tests/Makefile.am
View file @
297b04e2
...
@@ -33,7 +33,8 @@ lxc_test_api_reboot_SOURCES = api_reboot.c \
...
@@ -33,7 +33,8 @@ lxc_test_api_reboot_SOURCES = api_reboot.c \
../lxc/sync.c ../lxc/sync.h
\
../lxc/sync.c ../lxc/sync.h
\
../lxc/string_utils.c ../lxc/string_utils.h
\
../lxc/string_utils.c ../lxc/string_utils.h
\
../lxc/terminal.c ../lxc/terminal.h
\
../lxc/terminal.c ../lxc/terminal.h
\
../lxc/utils.c ../lxc/utils.h
../lxc/utils.c ../lxc/utils.h
\
../lxc/uuid.c ../lxc/uuid.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
endif
endif
...
@@ -64,7 +65,8 @@ lxc_test_apparmor_SOURCES = aa.c \
...
@@ -64,7 +65,8 @@ lxc_test_apparmor_SOURCES = aa.c \
../lxc/sync.c ../lxc/sync.h
\
../lxc/sync.c ../lxc/sync.h
\
../lxc/string_utils.c ../lxc/string_utils.h
\
../lxc/string_utils.c ../lxc/string_utils.h
\
../lxc/terminal.c ../lxc/terminal.h
\
../lxc/terminal.c ../lxc/terminal.h
\
../lxc/utils.c ../lxc/utils.h
../lxc/utils.c ../lxc/utils.h
\
../lxc/uuid.c ../lxc/uuid.h
if
ENABLE_SECCOMP
if
ENABLE_SECCOMP
lxc_test_apparmor_SOURCES
+=
../lxc/seccomp.c ../lxc/lxcseccomp.h
lxc_test_apparmor_SOURCES
+=
../lxc/seccomp.c ../lxc/lxcseccomp.h
endif
endif
...
@@ -95,7 +97,8 @@ lxc_test_attach_SOURCES = attach.c \
...
@@ -95,7 +97,8 @@ lxc_test_attach_SOURCES = attach.c \
../lxc/sync.c ../lxc/sync.h
\
../lxc/sync.c ../lxc/sync.h
\
../lxc/string_utils.c ../lxc/string_utils.h
\
../lxc/string_utils.c ../lxc/string_utils.h
\
../lxc/terminal.c ../lxc/terminal.h
\
../lxc/terminal.c ../lxc/terminal.h
\
../lxc/utils.c ../lxc/utils.h
../lxc/utils.c ../lxc/utils.h
\
../lxc/uuid.c ../lxc/uuid.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
endif
endif
...
@@ -127,7 +130,8 @@ lxc_test_cgpath_SOURCES = cgpath.c \
...
@@ -127,7 +130,8 @@ lxc_test_cgpath_SOURCES = cgpath.c \
../lxc/sync.c ../lxc/sync.h
\
../lxc/sync.c ../lxc/sync.h
\
../lxc/string_utils.c ../lxc/string_utils.h
\
../lxc/string_utils.c ../lxc/string_utils.h
\
../lxc/terminal.c ../lxc/terminal.h
\
../lxc/terminal.c ../lxc/terminal.h
\
../lxc/utils.c ../lxc/utils.h
../lxc/utils.c ../lxc/utils.h
\
../lxc/uuid.c ../lxc/uuid.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
endif
endif
...
@@ -161,7 +165,8 @@ lxc_test_config_jump_table_SOURCES = config_jump_table.c \
...
@@ -161,7 +165,8 @@ lxc_test_config_jump_table_SOURCES = config_jump_table.c \
../lxc/sync.c ../lxc/sync.h
\
../lxc/sync.c ../lxc/sync.h
\
../lxc/string_utils.c ../lxc/string_utils.h
\
../lxc/string_utils.c ../lxc/string_utils.h
\
../lxc/terminal.c ../lxc/terminal.h
\
../lxc/terminal.c ../lxc/terminal.h
\
../lxc/utils.c ../lxc/utils.h
../lxc/utils.c ../lxc/utils.h
\
../lxc/uuid.c ../lxc/uuid.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
endif
endif
...
@@ -203,7 +208,8 @@ lxc_test_locktests_SOURCES = locktests.c \
...
@@ -203,7 +208,8 @@ lxc_test_locktests_SOURCES = locktests.c \
../lxc/sync.c ../lxc/sync.h
\
../lxc/sync.c ../lxc/sync.h
\
../lxc/string_utils.c ../lxc/string_utils.h
\
../lxc/string_utils.c ../lxc/string_utils.h
\
../lxc/terminal.c ../lxc/terminal.h
\
../lxc/terminal.c ../lxc/terminal.h
\
../lxc/utils.c ../lxc/utils.h
../lxc/utils.c ../lxc/utils.h
\
../lxc/uuid.c ../lxc/uuid.h
if
ENABLE_SECCOMP
if
ENABLE_SECCOMP
lxc_test_locktests_SOURCES
+=
../lxc/seccomp.c ../lxc/lxcseccomp.h
lxc_test_locktests_SOURCES
+=
../lxc/seccomp.c ../lxc/lxcseccomp.h
endif
endif
...
@@ -237,7 +243,8 @@ lxc_test_mount_injection_SOURCES = mount_injection.c \
...
@@ -237,7 +243,8 @@ lxc_test_mount_injection_SOURCES = mount_injection.c \
../lxc/sync.c ../lxc/sync.h
\
../lxc/sync.c ../lxc/sync.h
\
../lxc/string_utils.c ../lxc/string_utils.h
\
../lxc/string_utils.c ../lxc/string_utils.h
\
../lxc/terminal.c ../lxc/terminal.h
\
../lxc/terminal.c ../lxc/terminal.h
\
../lxc/utils.c ../lxc/utils.h
../lxc/utils.c ../lxc/utils.h
\
../lxc/uuid.c ../lxc/uuid.h
if
ENABLE_SECCOMP
if
ENABLE_SECCOMP
lxc_test_mount_injection_SOURCES
+=
../lxc/seccomp.c ../lxc/lxcseccomp.h
lxc_test_mount_injection_SOURCES
+=
../lxc/seccomp.c ../lxc/lxcseccomp.h
endif
endif
...
@@ -269,7 +276,8 @@ lxc_test_parse_config_file_SOURCES = parse_config_file.c \
...
@@ -269,7 +276,8 @@ lxc_test_parse_config_file_SOURCES = parse_config_file.c \
../lxc/sync.c ../lxc/sync.h
\
../lxc/sync.c ../lxc/sync.h
\
../lxc/string_utils.c ../lxc/string_utils.h
\
../lxc/string_utils.c ../lxc/string_utils.h
\
../lxc/terminal.c ../lxc/terminal.h
\
../lxc/terminal.c ../lxc/terminal.h
\
../lxc/utils.c ../lxc/utils.h
../lxc/utils.c ../lxc/utils.h
\
../lxc/uuid.c ../lxc/uuid.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
endif
endif
...
@@ -324,7 +332,8 @@ lxc_test_utils_SOURCES = lxc-test-utils.c \
...
@@ -324,7 +332,8 @@ lxc_test_utils_SOURCES = lxc-test-utils.c \
../lxc/sync.c ../lxc/sync.h
\
../lxc/sync.c ../lxc/sync.h
\
../lxc/string_utils.c ../lxc/string_utils.h
\
../lxc/string_utils.c ../lxc/string_utils.h
\
../lxc/terminal.c ../lxc/terminal.h
\
../lxc/terminal.c ../lxc/terminal.h
\
../lxc/utils.c ../lxc/utils.h
../lxc/utils.c ../lxc/utils.h
\
../lxc/uuid.c ../lxc/uuid.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
endif
endif
...
...
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