forked from sylabs/singularity
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule conmon
updated
34 files
+26 −4 | .cirrus.yml | |
+7 −7 | .github/workflows/integration.yml | |
+49 −0 | .packit.yaml | |
+9 −6 | Makefile | |
+1 −1 | VERSION | |
+97 −11 | go.mod | |
+26 −132 | go.sum | |
+10 −5 | hack/github-actions-setup | |
+1 −1 | hack/seccomp-notify.sh | |
+5 −1 | meson.build | |
+1 −1 | runner/config/config_unix.go | |
+1 −1 | runner/config/config_windows.go | |
+1 −1 | runner/conmon_test/conmon_test.go | |
+1 −1 | runner/conmon_test/ctr_logs_test.go | |
+1 −1 | runner/conmon_test/runtime_test.go | |
+1 −1 | runner/conmon_test/suite_test.go | |
+20 −5 | src/cgroup.c | |
+5 −2 | src/cli.c | |
+0 −1 | src/close_fds.c | |
+4 −0 | src/cmsg.c | |
+18 −14 | src/conmon.c | |
+62 −24 | src/conn_sock.c | |
+6 −8 | src/ctr_exit.c | |
+1 −2 | src/ctr_exit.h | |
+10 −12 | src/ctr_logging.c | |
+2 −2 | src/ctrl.c | |
+4 −0 | src/oom.c | |
+1 −1 | src/runtime_args.c | |
+7 −4 | src/seccomp_notify.c | |
+2 −2 | src/seccomp_notify_plugin.h | |
+105 −1 | src/utils.c | |
+7 −0 | src/utils.h | |
+0 −2 | tools/Makefile | |
+1 −1 | tools/tools.go |