diff options
author | Giuseppe Scrivano <gscrivan@redhat.com> | 2019-06-26 12:09:30 +0200 |
---|---|---|
committer | Giuseppe Scrivano <gscrivan@redhat.com> | 2019-07-02 16:41:02 +0200 |
commit | c81a8f2b6d785e989eb091786dd473e383e2f00a (patch) | |
tree | f6abaf2ebb87386400642d46b4a729747b708e64 /libpod/container_attach_linux_cgo.go | |
parent | 1e0d63278519e09d7204babb1accb9c9f4b067ea (diff) | |
download | podman-c81a8f2b6d785e989eb091786dd473e383e2f00a.tar.gz podman-c81a8f2b6d785e989eb091786dd473e383e2f00a.tar.bz2 podman-c81a8f2b6d785e989eb091786dd473e383e2f00a.zip |
attach: move cgo bits to a different file
move the cgo bits to a separate file to allow building without cgo.
Signed-off-by: Giuseppe Scrivano <gscrivan@redhat.com>
Diffstat (limited to 'libpod/container_attach_linux_cgo.go')
-rw-r--r-- | libpod/container_attach_linux_cgo.go | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/libpod/container_attach_linux_cgo.go b/libpod/container_attach_linux_cgo.go new file mode 100644 index 000000000..d81243360 --- /dev/null +++ b/libpod/container_attach_linux_cgo.go @@ -0,0 +1,11 @@ +//+build linux,cgo + +package libpod + +//#include <sys/un.h> +// extern int unix_path_length(){struct sockaddr_un addr; return sizeof(addr.sun_path) - 1;} +import "C" + +func unixPathLength() int { + return int(C.unix_path_length()) +} |