-
Notifications
You must be signed in to change notification settings - Fork 77
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
7 changed files
with
95 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule crun
updated
17 files
+1 −1 | .github/workflows/test.yaml | |
+16 −0 | NEWS | |
+1 −4 | README.md | |
+0 −2 | configure.ac | |
+1 −4 | nix/default-s390x.nix | |
+5 −5 | nix/nixpkgs.json | |
+11 −6 | src/libcrun/cgroup-systemd.c | |
+21 −2 | src/libcrun/container.c | |
+1 −1 | src/libcrun/custom-handler.c | |
+13 −2 | src/libcrun/handlers/wasmedge.c | |
+31 −23 | src/libcrun/linux.c | |
+1 −10 | src/libcrun/utils.c | |
+1 −1 | src/restore.c | |
+0 −2 | src/run.c | |
+2 −1 | tests/centos8-build/Dockerfile | |
+1 −1 | tests/podman/run-tests.sh | |
+1 −1 | tests/wasmedge-build/Dockerfile |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#ifndef GIT_VERSION | ||
# define GIT_VERSION "dockerc-hash" | ||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
/* | ||
* Autogenerated by the Meson build system. | ||
* Do not edit, your changes will be lost. | ||
*/ | ||
|
||
#pragma once | ||
|
||
// not available in musl | ||
// #define HAVE_BACKTRACE | ||
|
||
#define HAVE_COPY_FILE_RANGE | ||
|
||
#define HAVE_FALLOCATE | ||
|
||
#define HAVE_FDATASYNC | ||
|
||
#define HAVE_FORK | ||
|
||
#define HAVE_FSTATAT | ||
|
||
#define HAVE_ICONV | ||
|
||
#define HAVE_OPENAT | ||
|
||
#define HAVE_PIPE2 | ||
|
||
#define HAVE_POSIX_FALLOCATE | ||
|
||
#define HAVE_READLINKAT | ||
|
||
#define HAVE_SETXATTR | ||
|
||
#define HAVE_SPLICE | ||
|
||
#define HAVE_STRUCT_STAT_ST_ATIM | ||
|
||
#undef HAVE_STRUCT_STAT_ST_ATIMESPEC | ||
|
||
#define HAVE_UTIMENSAT | ||
|
||
#define HAVE_VMSPLICE | ||
|
||
#define PACKAGE_VERSION "3.17.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
/* | ||
* Autogenerated by the Meson build system. | ||
* Do not edit, your changes will be lost. | ||
*/ | ||
|
||
#pragma once | ||
|
||
#define FUSE_HOTFIX_VERSION 0 | ||
|
||
#define FUSE_MAJOR_VERSION 3 | ||
|
||
#define FUSE_MINOR_VERSION 17 | ||
|
||
#define LIBFUSE_BUILT_WITH_VERSIONED_SYMBOLS 1 | ||
|