├── .gitignore ├── .pullapprove.yml ├── .travis.yml ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── MAINTAINERS ├── MAINTAINERS_GUIDE.md ├── Makefile ├── NOTICE ├── PRINCIPLES.md ├── README.md ├── VERSION ├── checkpoint.go ├── contrib ├── cmd │ └── recvtty │ │ └── recvtty.go └── completions │ └── bash │ └── runc ├── create.go ├── delete.go ├── events.go ├── exec.go ├── init.go ├── kill.go ├── libcontainer ├── README.md ├── SPEC.md ├── apparmor │ ├── apparmor.go │ └── apparmor_disabled.go ├── capabilities_linux.go ├── cgroups │ ├── cgroups.go │ ├── cgroups_test.go │ ├── cgroups_unsupported.go │ ├── fs │ │ ├── apply_raw.go │ │ ├── apply_raw_test.go │ │ ├── blkio.go │ │ ├── blkio_test.go │ │ ├── cpu.go │ │ ├── cpu_test.go │ │ ├── cpuacct.go │ │ ├── cpuset.go │ │ ├── cpuset_test.go │ │ ├── devices.go │ │ ├── devices_test.go │ │ ├── freezer.go │ │ ├── freezer_test.go │ │ ├── fs_unsupported.go │ │ ├── hugetlb.go │ │ ├── hugetlb_test.go │ │ ├── memory.go │ │ ├── memory_test.go │ │ ├── name.go │ │ ├── net_cls.go │ │ ├── net_cls_test.go │ │ ├── net_prio.go │ │ ├── net_prio_test.go │ │ ├── perf_event.go │ │ ├── pids.go │ │ ├── pids_test.go │ │ ├── stats_util_test.go │ │ ├── util_test.go │ │ ├── utils.go │ │ └── utils_test.go │ ├── rootless │ │ └── rootless.go │ ├── stats.go │ ├── systemd │ │ ├── apply_nosystemd.go │ │ └── apply_systemd.go │ ├── utils.go │ └── utils_test.go ├── compat_1.5_linux.go ├── configs │ ├── blkio_device.go │ ├── cgroup_linux.go │ ├── cgroup_unsupported.go │ ├── cgroup_windows.go │ ├── config.go │ ├── config_linux.go │ ├── config_linux_test.go │ ├── config_test.go │ ├── config_windows_test.go │ ├── device.go │ ├── device_defaults.go │ ├── hugepage_limit.go │ ├── interface_priority_map.go │ ├── mount.go │ ├── namespaces.go │ ├── namespaces_linux.go │ ├── namespaces_syscall.go │ ├── namespaces_syscall_unsupported.go │ ├── namespaces_unsupported.go │ ├── network.go │ └── validate │ │ ├── rootless.go │ │ ├── rootless_test.go │ │ ├── validator.go │ │ └── validator_test.go ├── console.go ├── console_freebsd.go ├── console_linux.go ├── console_solaris.go ├── console_windows.go ├── container.go ├── container_linux.go ├── container_linux_test.go ├── container_solaris.go ├── container_windows.go ├── criu_opts_linux.go ├── criu_opts_windows.go ├── criurpc │ ├── Makefile │ ├── criurpc.pb.go │ └── criurpc.proto ├── devices │ ├── devices_linux.go │ ├── devices_test.go │ ├── devices_unsupported.go │ └── number.go ├── error.go ├── error_test.go ├── factory.go ├── factory_linux.go ├── factory_linux_test.go ├── generic_error.go ├── generic_error_test.go ├── init_linux.go ├── integration │ ├── checkpoint_test.go │ ├── doc.go │ ├── exec_test.go │ ├── execin_test.go │ ├── init_test.go │ ├── seccomp_test.go │ ├── template_test.go │ └── utils_test.go ├── keys │ └── keyctl.go ├── message_linux.go ├── network_linux.go ├── notify_linux.go ├── notify_linux_test.go ├── nsenter │ ├── README.md │ ├── namespace.h │ ├── nsenter.go │ ├── nsenter_gccgo.go │ ├── nsenter_test.go │ ├── nsenter_unsupported.go │ └── nsexec.c ├── process.go ├── process_linux.go ├── restored_process.go ├── rootfs_linux.go ├── rootfs_linux_test.go ├── seccomp │ ├── config.go │ ├── fixtures │ │ └── proc_self_status │ ├── seccomp_linux.go │ ├── seccomp_linux_test.go │ └── seccomp_unsupported.go ├── setgroups_linux.go ├── setns_init_linux.go ├── specconv │ ├── example.go │ ├── spec_linux.go │ └── spec_linux_test.go ├── stacktrace │ ├── capture.go │ ├── capture_test.go │ ├── frame.go │ ├── frame_test.go │ └── stacktrace.go ├── standard_init_linux.go ├── state_linux.go ├── state_linux_test.go ├── stats.go ├── stats_freebsd.go ├── stats_linux.go ├── stats_solaris.go ├── stats_windows.go ├── sync.go ├── system │ ├── linux.go │ ├── proc.go │ ├── proc_test.go │ ├── syscall_linux_386.go │ ├── syscall_linux_64.go │ ├── syscall_linux_arm.go │ ├── sysconfig.go │ ├── sysconfig_notcgo.go │ ├── unsupported.go │ └── xattrs_linux.go ├── user │ ├── MAINTAINERS │ ├── lookup.go │ ├── lookup_unix.go │ ├── lookup_unsupported.go │ ├── user.go │ └── user_test.go ├── utils │ ├── cmsg.go │ ├── utils.go │ ├── utils_test.go │ └── utils_unix.go └── xattr │ ├── errors.go │ ├── xattr_linux.go │ ├── xattr_test.go │ └── xattr_unsupported.go ├── list.go ├── main.go ├── man ├── README.md ├── md2man-all.sh ├── runc-checkpoint.8.md ├── runc-create.8.md ├── runc-delete.8.md ├── runc-events.8.md ├── runc-exec.8.md ├── runc-kill.8.md ├── runc-list.8.md ├── runc-pause.8.md ├── runc-ps.8.md ├── runc-restore.8.md ├── runc-resume.8.md ├── runc-run.8.md ├── runc-spec.8.md ├── runc-start.8.md ├── runc-state.8.md ├── runc-update.8.md └── runc.8.md ├── notify_socket.go ├── pause.go ├── ps.go ├── restore.go ├── rlimit_linux.go ├── run.go ├── script ├── .validate ├── check-config.sh ├── release.sh ├── tmpmount └── validate-gofmt ├── signals.go ├── spec.go ├── start.go ├── state.go ├── tests └── integration │ ├── README.md │ ├── cgroups.bats │ ├── checkpoint.bats │ ├── create.bats │ ├── debug.bats │ ├── delete.bats │ ├── events.bats │ ├── exec.bats │ ├── help.bats │ ├── helpers.bash │ ├── kill.bats │ ├── list.bats │ ├── mask.bats │ ├── pause.bats │ ├── ps.bats │ ├── root.bats │ ├── spec.bats │ ├── start.bats │ ├── start_detached.bats │ ├── start_hello.bats │ ├── state.bats │ ├── testdata │ └── hello-world.tar │ ├── tty.bats │ ├── update.bats │ └── version.bats ├── tty.go ├── update.go ├── utils.go ├── utils_linux.go ├── vendor.conf └── vendor ├── github.com ├── coreos │ ├── go-systemd │ │ ├── LICENSE │ │ ├── README.md │ │ ├── activation │ │ │ ├── files.go │ │ │ ├── listeners.go │ │ │ └── packetconns.go │ │ ├── dbus │ │ │ ├── dbus.go │ │ │ ├── methods.go │ │ │ ├── properties.go │ │ │ ├── set.go │ │ │ ├── subscription.go │ │ │ └── subscription_set.go │ │ └── util │ │ │ ├── util.go │ │ │ ├── util_cgo.go │ │ │ └── util_stub.go │ └── pkg │ │ ├── LICENSE │ │ ├── NOTICE │ │ ├── README.md │ │ └── dlopen │ │ ├── dlopen.go │ │ └── dlopen_example.go ├── docker │ ├── docker │ │ ├── LICENSE │ │ ├── NOTICE │ │ ├── README.md │ │ └── pkg │ │ │ ├── README.md │ │ │ ├── mount │ │ │ ├── flags.go │ │ │ ├── flags_freebsd.go │ │ │ ├── flags_linux.go │ │ │ ├── flags_unsupported.go │ │ │ ├── mount.go │ │ │ ├── mounter_freebsd.go │ │ │ ├── mounter_linux.go │ │ │ ├── mounter_unsupported.go │ │ │ ├── mountinfo.go │ │ │ ├── mountinfo_freebsd.go │ │ │ ├── mountinfo_linux.go │ │ │ ├── mountinfo_unsupported.go │ │ │ └── sharedsubtree_linux.go │ │ │ ├── symlink │ │ │ ├── LICENSE.APACHE │ │ │ ├── LICENSE.BSD │ │ │ ├── README.md │ │ │ └── fs.go │ │ │ └── term │ │ │ ├── tc_linux_cgo.go │ │ │ ├── tc_other.go │ │ │ ├── term.go │ │ │ ├── term_windows.go │ │ │ ├── termios_darwin.go │ │ │ ├── termios_freebsd.go │ │ │ ├── termios_linux.go │ │ │ └── winconsole │ │ │ ├── console_windows.go │ │ │ └── term_emulator.go │ └── go-units │ │ ├── LICENSE │ │ ├── README.md │ │ ├── duration.go │ │ └── size.go ├── godbus │ └── dbus │ │ ├── LICENSE │ │ ├── README.markdown │ │ ├── auth.go │ │ ├── auth_external.go │ │ ├── auth_sha1.go │ │ ├── call.go │ │ ├── conn.go │ │ ├── conn_darwin.go │ │ ├── conn_other.go │ │ ├── dbus.go │ │ ├── decoder.go │ │ ├── doc.go │ │ ├── encoder.go │ │ ├── export.go │ │ ├── homedir.go │ │ ├── homedir_dynamic.go │ │ ├── homedir_static.go │ │ ├── message.go │ │ ├── object.go │ │ ├── sig.go │ │ ├── transport_darwin.go │ │ ├── transport_generic.go │ │ ├── transport_unix.go │ │ ├── transport_unixcred_dragonfly.go │ │ ├── transport_unixcred_linux.go │ │ ├── variant.go │ │ ├── variant_lexer.go │ │ └── variant_parser.go ├── golang │ └── protobuf │ │ ├── LICENSE │ │ ├── README.md │ │ └── proto │ │ ├── clone.go │ │ ├── decode.go │ │ ├── encode.go │ │ ├── equal.go │ │ ├── extensions.go │ │ ├── lib.go │ │ ├── message_set.go │ │ ├── pointer_reflect.go │ │ ├── pointer_unsafe.go │ │ ├── properties.go │ │ ├── text.go │ │ └── text_parser.go ├── mrunalp │ └── fileutils │ │ ├── LICENSE │ │ ├── README.md │ │ ├── fileutils.go │ │ └── idtools.go ├── opencontainers │ ├── runtime-spec │ │ ├── LICENSE │ │ ├── README.md │ │ └── specs-go │ │ │ ├── config.go │ │ │ ├── state.go │ │ │ └── version.go │ └── selinux │ │ ├── LICENSE │ │ ├── README.md │ │ └── go-selinux │ │ ├── label │ │ ├── label.go │ │ └── label_selinux.go │ │ ├── selinux.go │ │ └── xattrs.go ├── seccomp │ └── libseccomp-golang │ │ ├── LICENSE │ │ ├── README │ │ ├── seccomp.go │ │ └── seccomp_internal.go ├── sirupsen │ └── logrus │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── alt_exit.go │ │ ├── doc.go │ │ ├── entry.go │ │ ├── exported.go │ │ ├── formatter.go │ │ ├── hooks.go │ │ ├── json_formatter.go │ │ ├── logger.go │ │ ├── logrus.go │ │ ├── terminal_appengine.go │ │ ├── terminal_bsd.go │ │ ├── terminal_linux.go │ │ ├── terminal_notwindows.go │ │ ├── terminal_solaris.go │ │ ├── terminal_windows.go │ │ ├── text_formatter.go │ │ └── writer.go ├── syndtr │ └── gocapability │ │ ├── LICENSE │ │ └── capability │ │ ├── capability.go │ │ ├── capability_linux.go │ │ ├── capability_noop.go │ │ ├── enum.go │ │ ├── enum_gen.go │ │ └── syscall_linux.go ├── urfave │ └── cli │ │ ├── LICENSE │ │ ├── README.md │ │ ├── app.go │ │ ├── category.go │ │ ├── cli.go │ │ ├── command.go │ │ ├── context.go │ │ ├── errors.go │ │ ├── flag.go │ │ ├── flag_generated.go │ │ ├── funcs.go │ │ └── help.go └── vishvananda │ └── netlink │ ├── LICENSE │ ├── README.md │ ├── addr.go │ ├── addr_linux.go │ ├── filter.go │ ├── filter_linux.go │ ├── link.go │ ├── link_linux.go │ ├── neigh.go │ ├── neigh_linux.go │ ├── netlink.go │ ├── netlink_unspecified.go │ ├── nl │ ├── addr_linux.go │ ├── link_linux.go │ ├── nl_linux.go │ ├── route_linux.go │ ├── tc_linux.go │ ├── xfrm_linux.go │ ├── xfrm_policy_linux.go │ └── xfrm_state_linux.go │ ├── protinfo.go │ ├── protinfo_linux.go │ ├── qdisc.go │ ├── qdisc_linux.go │ ├── route.go │ ├── route_linux.go │ ├── xfrm.go │ ├── xfrm_policy.go │ ├── xfrm_policy_linux.go │ ├── xfrm_state.go │ └── xfrm_state_linux.go └── golang.org └── x └── sys ├── LICENSE ├── PATENTS ├── README └── unix ├── README.md ├── asm_darwin_386.s ├── asm_darwin_amd64.s ├── asm_darwin_arm.s ├── asm_darwin_arm64.s ├── asm_dragonfly_amd64.s ├── asm_freebsd_386.s ├── asm_freebsd_amd64.s ├── asm_freebsd_arm.s ├── asm_linux_386.s ├── asm_linux_amd64.s ├── asm_linux_arm.s ├── asm_linux_arm64.s ├── asm_linux_mips64x.s ├── asm_linux_mipsx.s ├── asm_linux_ppc64x.s ├── asm_linux_s390x.s ├── asm_netbsd_386.s ├── asm_netbsd_amd64.s ├── asm_netbsd_arm.s ├── asm_openbsd_386.s ├── asm_openbsd_amd64.s ├── asm_solaris_amd64.s ├── bluetooth_linux.go ├── constants.go ├── dirent.go ├── endian_big.go ├── endian_little.go ├── env_unix.go ├── env_unset.go ├── flock.go ├── flock_linux_32bit.go ├── gccgo.go ├── gccgo_c.c ├── gccgo_linux_amd64.go ├── gccgo_linux_sparc64.go ├── openbsd_pledge.go ├── race.go ├── race0.go ├── sockcmsg_linux.go ├── sockcmsg_unix.go ├── str.go ├── syscall.go ├── syscall_bsd.go ├── syscall_darwin.go ├── syscall_darwin_386.go ├── syscall_darwin_amd64.go ├── syscall_darwin_arm.go ├── syscall_darwin_arm64.go ├── syscall_dragonfly.go ├── syscall_dragonfly_amd64.go ├── syscall_freebsd.go ├── syscall_freebsd_386.go ├── syscall_freebsd_amd64.go ├── syscall_freebsd_arm.go ├── syscall_linux.go ├── syscall_linux_386.go ├── syscall_linux_amd64.go ├── syscall_linux_amd64_gc.go ├── syscall_linux_arm.go ├── syscall_linux_arm64.go ├── syscall_linux_mips64x.go ├── syscall_linux_mipsx.go ├── syscall_linux_ppc64x.go ├── syscall_linux_s390x.go ├── syscall_linux_sparc64.go ├── syscall_netbsd.go ├── syscall_netbsd_386.go ├── syscall_netbsd_amd64.go ├── syscall_netbsd_arm.go ├── syscall_no_getwd.go ├── syscall_openbsd.go ├── syscall_openbsd_386.go ├── syscall_openbsd_amd64.go ├── syscall_solaris.go ├── syscall_solaris_amd64.go ├── syscall_unix.go ├── syscall_unix_gc.go ├── zerrors_darwin_386.go ├── zerrors_darwin_amd64.go ├── zerrors_darwin_arm.go ├── zerrors_darwin_arm64.go ├── zerrors_dragonfly_amd64.go ├── zerrors_freebsd_386.go ├── zerrors_freebsd_amd64.go ├── zerrors_freebsd_arm.go ├── zerrors_linux_386.go ├── zerrors_linux_amd64.go ├── zerrors_linux_arm.go ├── zerrors_linux_arm64.go ├── zerrors_linux_mips.go ├── zerrors_linux_mips64.go ├── zerrors_linux_mips64le.go ├── zerrors_linux_mipsle.go ├── zerrors_linux_ppc64.go ├── zerrors_linux_ppc64le.go ├── zerrors_linux_s390x.go ├── zerrors_linux_sparc64.go ├── zerrors_netbsd_386.go ├── zerrors_netbsd_amd64.go ├── zerrors_netbsd_arm.go ├── zerrors_openbsd_386.go ├── zerrors_openbsd_amd64.go ├── zerrors_solaris_amd64.go ├── zsyscall_darwin_386.go ├── zsyscall_darwin_amd64.go ├── zsyscall_darwin_arm.go ├── zsyscall_darwin_arm64.go ├── zsyscall_dragonfly_amd64.go ├── zsyscall_freebsd_386.go ├── zsyscall_freebsd_amd64.go ├── zsyscall_freebsd_arm.go ├── zsyscall_linux_386.go ├── zsyscall_linux_amd64.go ├── zsyscall_linux_arm.go ├── zsyscall_linux_arm64.go ├── zsyscall_linux_mips.go ├── zsyscall_linux_mips64.go ├── zsyscall_linux_mips64le.go ├── zsyscall_linux_mipsle.go ├── zsyscall_linux_ppc64.go ├── zsyscall_linux_ppc64le.go ├── zsyscall_linux_s390x.go ├── zsyscall_linux_sparc64.go ├── zsyscall_netbsd_386.go ├── zsyscall_netbsd_amd64.go ├── zsyscall_netbsd_arm.go ├── zsyscall_openbsd_386.go ├── zsyscall_openbsd_amd64.go ├── zsyscall_solaris_amd64.go ├── zsysctl_openbsd.go ├── zsysnum_darwin_386.go ├── zsysnum_darwin_amd64.go ├── zsysnum_darwin_arm.go ├── zsysnum_darwin_arm64.go ├── zsysnum_dragonfly_amd64.go ├── zsysnum_freebsd_386.go ├── zsysnum_freebsd_amd64.go ├── zsysnum_freebsd_arm.go ├── zsysnum_linux_386.go ├── zsysnum_linux_amd64.go ├── zsysnum_linux_arm.go ├── zsysnum_linux_arm64.go ├── zsysnum_linux_mips.go ├── zsysnum_linux_mips64.go ├── zsysnum_linux_mips64le.go ├── zsysnum_linux_mipsle.go ├── zsysnum_linux_ppc64.go ├── zsysnum_linux_ppc64le.go ├── zsysnum_linux_s390x.go ├── zsysnum_linux_sparc64.go ├── zsysnum_netbsd_386.go ├── zsysnum_netbsd_amd64.go ├── zsysnum_netbsd_arm.go ├── zsysnum_openbsd_386.go ├── zsysnum_openbsd_amd64.go ├── zsysnum_solaris_amd64.go ├── ztypes_darwin_386.go ├── ztypes_darwin_amd64.go ├── ztypes_darwin_arm.go ├── ztypes_darwin_arm64.go ├── ztypes_dragonfly_amd64.go ├── ztypes_freebsd_386.go ├── ztypes_freebsd_amd64.go ├── ztypes_freebsd_arm.go ├── ztypes_linux_386.go ├── ztypes_linux_amd64.go ├── ztypes_linux_arm.go ├── ztypes_linux_arm64.go ├── ztypes_linux_mips.go ├── ztypes_linux_mips64.go ├── ztypes_linux_mips64le.go ├── ztypes_linux_mipsle.go ├── ztypes_linux_ppc64.go ├── ztypes_linux_ppc64le.go ├── ztypes_linux_s390x.go ├── ztypes_linux_sparc64.go ├── ztypes_netbsd_386.go ├── ztypes_netbsd_amd64.go ├── ztypes_netbsd_arm.go ├── ztypes_openbsd_386.go ├── ztypes_openbsd_amd64.go └── ztypes_solaris_amd64.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/.gitignore -------------------------------------------------------------------------------- /.pullapprove.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/.pullapprove.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/LICENSE -------------------------------------------------------------------------------- /MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/MAINTAINERS -------------------------------------------------------------------------------- /MAINTAINERS_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/MAINTAINERS_GUIDE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/Makefile -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/NOTICE -------------------------------------------------------------------------------- /PRINCIPLES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/PRINCIPLES.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 1.0.0-rc4+dev 2 | -------------------------------------------------------------------------------- /checkpoint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/checkpoint.go -------------------------------------------------------------------------------- /contrib/cmd/recvtty/recvtty.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/contrib/cmd/recvtty/recvtty.go -------------------------------------------------------------------------------- /contrib/completions/bash/runc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/contrib/completions/bash/runc -------------------------------------------------------------------------------- /create.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/create.go -------------------------------------------------------------------------------- /delete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/delete.go -------------------------------------------------------------------------------- /events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/events.go -------------------------------------------------------------------------------- /exec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/exec.go -------------------------------------------------------------------------------- /init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/init.go -------------------------------------------------------------------------------- /kill.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/kill.go -------------------------------------------------------------------------------- /libcontainer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/README.md -------------------------------------------------------------------------------- /libcontainer/SPEC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/SPEC.md -------------------------------------------------------------------------------- /libcontainer/apparmor/apparmor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/apparmor/apparmor.go -------------------------------------------------------------------------------- /libcontainer/apparmor/apparmor_disabled.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/apparmor/apparmor_disabled.go -------------------------------------------------------------------------------- /libcontainer/capabilities_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/capabilities_linux.go -------------------------------------------------------------------------------- /libcontainer/cgroups/cgroups.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/cgroups/cgroups.go -------------------------------------------------------------------------------- /libcontainer/cgroups/cgroups_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/cgroups/cgroups_test.go -------------------------------------------------------------------------------- /libcontainer/cgroups/cgroups_unsupported.go: -------------------------------------------------------------------------------- 1 | // +build !linux 2 | 3 | package cgroups 4 | -------------------------------------------------------------------------------- /libcontainer/cgroups/fs/apply_raw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/cgroups/fs/apply_raw.go -------------------------------------------------------------------------------- /libcontainer/cgroups/fs/apply_raw_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/cgroups/fs/apply_raw_test.go -------------------------------------------------------------------------------- /libcontainer/cgroups/fs/blkio.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/cgroups/fs/blkio.go -------------------------------------------------------------------------------- /libcontainer/cgroups/fs/blkio_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/cgroups/fs/blkio_test.go -------------------------------------------------------------------------------- /libcontainer/cgroups/fs/cpu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/cgroups/fs/cpu.go -------------------------------------------------------------------------------- /libcontainer/cgroups/fs/cpu_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/cgroups/fs/cpu_test.go -------------------------------------------------------------------------------- /libcontainer/cgroups/fs/cpuacct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/cgroups/fs/cpuacct.go -------------------------------------------------------------------------------- /libcontainer/cgroups/fs/cpuset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/cgroups/fs/cpuset.go -------------------------------------------------------------------------------- /libcontainer/cgroups/fs/cpuset_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/cgroups/fs/cpuset_test.go -------------------------------------------------------------------------------- /libcontainer/cgroups/fs/devices.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/cgroups/fs/devices.go -------------------------------------------------------------------------------- /libcontainer/cgroups/fs/devices_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/cgroups/fs/devices_test.go -------------------------------------------------------------------------------- /libcontainer/cgroups/fs/freezer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/cgroups/fs/freezer.go -------------------------------------------------------------------------------- /libcontainer/cgroups/fs/freezer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/cgroups/fs/freezer_test.go -------------------------------------------------------------------------------- /libcontainer/cgroups/fs/fs_unsupported.go: -------------------------------------------------------------------------------- 1 | // +build !linux 2 | 3 | package fs 4 | -------------------------------------------------------------------------------- /libcontainer/cgroups/fs/hugetlb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/cgroups/fs/hugetlb.go -------------------------------------------------------------------------------- /libcontainer/cgroups/fs/hugetlb_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/cgroups/fs/hugetlb_test.go -------------------------------------------------------------------------------- /libcontainer/cgroups/fs/memory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/cgroups/fs/memory.go -------------------------------------------------------------------------------- /libcontainer/cgroups/fs/memory_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/cgroups/fs/memory_test.go -------------------------------------------------------------------------------- /libcontainer/cgroups/fs/name.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/cgroups/fs/name.go -------------------------------------------------------------------------------- /libcontainer/cgroups/fs/net_cls.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/cgroups/fs/net_cls.go -------------------------------------------------------------------------------- /libcontainer/cgroups/fs/net_cls_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/cgroups/fs/net_cls_test.go -------------------------------------------------------------------------------- /libcontainer/cgroups/fs/net_prio.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/cgroups/fs/net_prio.go -------------------------------------------------------------------------------- /libcontainer/cgroups/fs/net_prio_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/cgroups/fs/net_prio_test.go -------------------------------------------------------------------------------- /libcontainer/cgroups/fs/perf_event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/cgroups/fs/perf_event.go -------------------------------------------------------------------------------- /libcontainer/cgroups/fs/pids.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/cgroups/fs/pids.go -------------------------------------------------------------------------------- /libcontainer/cgroups/fs/pids_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/cgroups/fs/pids_test.go -------------------------------------------------------------------------------- /libcontainer/cgroups/fs/stats_util_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/cgroups/fs/stats_util_test.go -------------------------------------------------------------------------------- /libcontainer/cgroups/fs/util_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/cgroups/fs/util_test.go -------------------------------------------------------------------------------- /libcontainer/cgroups/fs/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/cgroups/fs/utils.go -------------------------------------------------------------------------------- /libcontainer/cgroups/fs/utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/cgroups/fs/utils_test.go -------------------------------------------------------------------------------- /libcontainer/cgroups/rootless/rootless.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/cgroups/rootless/rootless.go -------------------------------------------------------------------------------- /libcontainer/cgroups/stats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/cgroups/stats.go -------------------------------------------------------------------------------- /libcontainer/cgroups/systemd/apply_nosystemd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/cgroups/systemd/apply_nosystemd.go -------------------------------------------------------------------------------- /libcontainer/cgroups/systemd/apply_systemd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/cgroups/systemd/apply_systemd.go -------------------------------------------------------------------------------- /libcontainer/cgroups/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/cgroups/utils.go -------------------------------------------------------------------------------- /libcontainer/cgroups/utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/cgroups/utils_test.go -------------------------------------------------------------------------------- /libcontainer/compat_1.5_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/compat_1.5_linux.go -------------------------------------------------------------------------------- /libcontainer/configs/blkio_device.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/configs/blkio_device.go -------------------------------------------------------------------------------- /libcontainer/configs/cgroup_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/configs/cgroup_linux.go -------------------------------------------------------------------------------- /libcontainer/configs/cgroup_unsupported.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/configs/cgroup_unsupported.go -------------------------------------------------------------------------------- /libcontainer/configs/cgroup_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/configs/cgroup_windows.go -------------------------------------------------------------------------------- /libcontainer/configs/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/configs/config.go -------------------------------------------------------------------------------- /libcontainer/configs/config_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/configs/config_linux.go -------------------------------------------------------------------------------- /libcontainer/configs/config_linux_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/configs/config_linux_test.go -------------------------------------------------------------------------------- /libcontainer/configs/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/configs/config_test.go -------------------------------------------------------------------------------- /libcontainer/configs/config_windows_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/configs/config_windows_test.go -------------------------------------------------------------------------------- /libcontainer/configs/device.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/configs/device.go -------------------------------------------------------------------------------- /libcontainer/configs/device_defaults.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/configs/device_defaults.go -------------------------------------------------------------------------------- /libcontainer/configs/hugepage_limit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/configs/hugepage_limit.go -------------------------------------------------------------------------------- /libcontainer/configs/interface_priority_map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/configs/interface_priority_map.go -------------------------------------------------------------------------------- /libcontainer/configs/mount.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/configs/mount.go -------------------------------------------------------------------------------- /libcontainer/configs/namespaces.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/configs/namespaces.go -------------------------------------------------------------------------------- /libcontainer/configs/namespaces_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/configs/namespaces_linux.go -------------------------------------------------------------------------------- /libcontainer/configs/namespaces_syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/configs/namespaces_syscall.go -------------------------------------------------------------------------------- /libcontainer/configs/namespaces_syscall_unsupported.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/configs/namespaces_syscall_unsupported.go -------------------------------------------------------------------------------- /libcontainer/configs/namespaces_unsupported.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/configs/namespaces_unsupported.go -------------------------------------------------------------------------------- /libcontainer/configs/network.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/configs/network.go -------------------------------------------------------------------------------- /libcontainer/configs/validate/rootless.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/configs/validate/rootless.go -------------------------------------------------------------------------------- /libcontainer/configs/validate/rootless_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/configs/validate/rootless_test.go -------------------------------------------------------------------------------- /libcontainer/configs/validate/validator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/configs/validate/validator.go -------------------------------------------------------------------------------- /libcontainer/configs/validate/validator_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/configs/validate/validator_test.go -------------------------------------------------------------------------------- /libcontainer/console.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/console.go -------------------------------------------------------------------------------- /libcontainer/console_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/console_freebsd.go -------------------------------------------------------------------------------- /libcontainer/console_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/console_linux.go -------------------------------------------------------------------------------- /libcontainer/console_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/console_solaris.go -------------------------------------------------------------------------------- /libcontainer/console_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/console_windows.go -------------------------------------------------------------------------------- /libcontainer/container.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/container.go -------------------------------------------------------------------------------- /libcontainer/container_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/container_linux.go -------------------------------------------------------------------------------- /libcontainer/container_linux_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/container_linux_test.go -------------------------------------------------------------------------------- /libcontainer/container_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/container_solaris.go -------------------------------------------------------------------------------- /libcontainer/container_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/container_windows.go -------------------------------------------------------------------------------- /libcontainer/criu_opts_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/criu_opts_linux.go -------------------------------------------------------------------------------- /libcontainer/criu_opts_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/criu_opts_windows.go -------------------------------------------------------------------------------- /libcontainer/criurpc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/criurpc/Makefile -------------------------------------------------------------------------------- /libcontainer/criurpc/criurpc.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/criurpc/criurpc.pb.go -------------------------------------------------------------------------------- /libcontainer/criurpc/criurpc.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/criurpc/criurpc.proto -------------------------------------------------------------------------------- /libcontainer/devices/devices_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/devices/devices_linux.go -------------------------------------------------------------------------------- /libcontainer/devices/devices_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/devices/devices_test.go -------------------------------------------------------------------------------- /libcontainer/devices/devices_unsupported.go: -------------------------------------------------------------------------------- 1 | // +build !linux 2 | 3 | package devices 4 | -------------------------------------------------------------------------------- /libcontainer/devices/number.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/devices/number.go -------------------------------------------------------------------------------- /libcontainer/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/error.go -------------------------------------------------------------------------------- /libcontainer/error_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/error_test.go -------------------------------------------------------------------------------- /libcontainer/factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/factory.go -------------------------------------------------------------------------------- /libcontainer/factory_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/factory_linux.go -------------------------------------------------------------------------------- /libcontainer/factory_linux_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/factory_linux_test.go -------------------------------------------------------------------------------- /libcontainer/generic_error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/generic_error.go -------------------------------------------------------------------------------- /libcontainer/generic_error_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/generic_error_test.go -------------------------------------------------------------------------------- /libcontainer/init_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/init_linux.go -------------------------------------------------------------------------------- /libcontainer/integration/checkpoint_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/integration/checkpoint_test.go -------------------------------------------------------------------------------- /libcontainer/integration/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/integration/doc.go -------------------------------------------------------------------------------- /libcontainer/integration/exec_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/integration/exec_test.go -------------------------------------------------------------------------------- /libcontainer/integration/execin_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/integration/execin_test.go -------------------------------------------------------------------------------- /libcontainer/integration/init_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/integration/init_test.go -------------------------------------------------------------------------------- /libcontainer/integration/seccomp_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/integration/seccomp_test.go -------------------------------------------------------------------------------- /libcontainer/integration/template_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/integration/template_test.go -------------------------------------------------------------------------------- /libcontainer/integration/utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/integration/utils_test.go -------------------------------------------------------------------------------- /libcontainer/keys/keyctl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/keys/keyctl.go -------------------------------------------------------------------------------- /libcontainer/message_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/message_linux.go -------------------------------------------------------------------------------- /libcontainer/network_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/network_linux.go -------------------------------------------------------------------------------- /libcontainer/notify_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/notify_linux.go -------------------------------------------------------------------------------- /libcontainer/notify_linux_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/notify_linux_test.go -------------------------------------------------------------------------------- /libcontainer/nsenter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/nsenter/README.md -------------------------------------------------------------------------------- /libcontainer/nsenter/namespace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/nsenter/namespace.h -------------------------------------------------------------------------------- /libcontainer/nsenter/nsenter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/nsenter/nsenter.go -------------------------------------------------------------------------------- /libcontainer/nsenter/nsenter_gccgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/nsenter/nsenter_gccgo.go -------------------------------------------------------------------------------- /libcontainer/nsenter/nsenter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/nsenter/nsenter_test.go -------------------------------------------------------------------------------- /libcontainer/nsenter/nsenter_unsupported.go: -------------------------------------------------------------------------------- 1 | // +build !linux !cgo 2 | 3 | package nsenter 4 | 5 | import "C" 6 | -------------------------------------------------------------------------------- /libcontainer/nsenter/nsexec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/nsenter/nsexec.c -------------------------------------------------------------------------------- /libcontainer/process.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/process.go -------------------------------------------------------------------------------- /libcontainer/process_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/process_linux.go -------------------------------------------------------------------------------- /libcontainer/restored_process.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/restored_process.go -------------------------------------------------------------------------------- /libcontainer/rootfs_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/rootfs_linux.go -------------------------------------------------------------------------------- /libcontainer/rootfs_linux_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/rootfs_linux_test.go -------------------------------------------------------------------------------- /libcontainer/seccomp/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/seccomp/config.go -------------------------------------------------------------------------------- /libcontainer/seccomp/fixtures/proc_self_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/seccomp/fixtures/proc_self_status -------------------------------------------------------------------------------- /libcontainer/seccomp/seccomp_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/seccomp/seccomp_linux.go -------------------------------------------------------------------------------- /libcontainer/seccomp/seccomp_linux_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/seccomp/seccomp_linux_test.go -------------------------------------------------------------------------------- /libcontainer/seccomp/seccomp_unsupported.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/seccomp/seccomp_unsupported.go -------------------------------------------------------------------------------- /libcontainer/setgroups_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/setgroups_linux.go -------------------------------------------------------------------------------- /libcontainer/setns_init_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/setns_init_linux.go -------------------------------------------------------------------------------- /libcontainer/specconv/example.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/specconv/example.go -------------------------------------------------------------------------------- /libcontainer/specconv/spec_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/specconv/spec_linux.go -------------------------------------------------------------------------------- /libcontainer/specconv/spec_linux_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/specconv/spec_linux_test.go -------------------------------------------------------------------------------- /libcontainer/stacktrace/capture.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/stacktrace/capture.go -------------------------------------------------------------------------------- /libcontainer/stacktrace/capture_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/stacktrace/capture_test.go -------------------------------------------------------------------------------- /libcontainer/stacktrace/frame.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/stacktrace/frame.go -------------------------------------------------------------------------------- /libcontainer/stacktrace/frame_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/stacktrace/frame_test.go -------------------------------------------------------------------------------- /libcontainer/stacktrace/stacktrace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/stacktrace/stacktrace.go -------------------------------------------------------------------------------- /libcontainer/standard_init_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/standard_init_linux.go -------------------------------------------------------------------------------- /libcontainer/state_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/state_linux.go -------------------------------------------------------------------------------- /libcontainer/state_linux_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/state_linux_test.go -------------------------------------------------------------------------------- /libcontainer/stats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/stats.go -------------------------------------------------------------------------------- /libcontainer/stats_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/stats_freebsd.go -------------------------------------------------------------------------------- /libcontainer/stats_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/stats_linux.go -------------------------------------------------------------------------------- /libcontainer/stats_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/stats_solaris.go -------------------------------------------------------------------------------- /libcontainer/stats_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/stats_windows.go -------------------------------------------------------------------------------- /libcontainer/sync.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/sync.go -------------------------------------------------------------------------------- /libcontainer/system/linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/system/linux.go -------------------------------------------------------------------------------- /libcontainer/system/proc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/system/proc.go -------------------------------------------------------------------------------- /libcontainer/system/proc_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/system/proc_test.go -------------------------------------------------------------------------------- /libcontainer/system/syscall_linux_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/system/syscall_linux_386.go -------------------------------------------------------------------------------- /libcontainer/system/syscall_linux_64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/system/syscall_linux_64.go -------------------------------------------------------------------------------- /libcontainer/system/syscall_linux_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/system/syscall_linux_arm.go -------------------------------------------------------------------------------- /libcontainer/system/sysconfig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/system/sysconfig.go -------------------------------------------------------------------------------- /libcontainer/system/sysconfig_notcgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/system/sysconfig_notcgo.go -------------------------------------------------------------------------------- /libcontainer/system/unsupported.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/system/unsupported.go -------------------------------------------------------------------------------- /libcontainer/system/xattrs_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/system/xattrs_linux.go -------------------------------------------------------------------------------- /libcontainer/user/MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/user/MAINTAINERS -------------------------------------------------------------------------------- /libcontainer/user/lookup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/user/lookup.go -------------------------------------------------------------------------------- /libcontainer/user/lookup_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/user/lookup_unix.go -------------------------------------------------------------------------------- /libcontainer/user/lookup_unsupported.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/user/lookup_unsupported.go -------------------------------------------------------------------------------- /libcontainer/user/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/user/user.go -------------------------------------------------------------------------------- /libcontainer/user/user_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/user/user_test.go -------------------------------------------------------------------------------- /libcontainer/utils/cmsg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/utils/cmsg.go -------------------------------------------------------------------------------- /libcontainer/utils/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/utils/utils.go -------------------------------------------------------------------------------- /libcontainer/utils/utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/utils/utils_test.go -------------------------------------------------------------------------------- /libcontainer/utils/utils_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/utils/utils_unix.go -------------------------------------------------------------------------------- /libcontainer/xattr/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/xattr/errors.go -------------------------------------------------------------------------------- /libcontainer/xattr/xattr_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/xattr/xattr_linux.go -------------------------------------------------------------------------------- /libcontainer/xattr/xattr_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/xattr/xattr_test.go -------------------------------------------------------------------------------- /libcontainer/xattr/xattr_unsupported.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/libcontainer/xattr/xattr_unsupported.go -------------------------------------------------------------------------------- /list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/list.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/main.go -------------------------------------------------------------------------------- /man/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/man/README.md -------------------------------------------------------------------------------- /man/md2man-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/man/md2man-all.sh -------------------------------------------------------------------------------- /man/runc-checkpoint.8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/man/runc-checkpoint.8.md -------------------------------------------------------------------------------- /man/runc-create.8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/man/runc-create.8.md -------------------------------------------------------------------------------- /man/runc-delete.8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/man/runc-delete.8.md -------------------------------------------------------------------------------- /man/runc-events.8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/man/runc-events.8.md -------------------------------------------------------------------------------- /man/runc-exec.8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/man/runc-exec.8.md -------------------------------------------------------------------------------- /man/runc-kill.8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/man/runc-kill.8.md -------------------------------------------------------------------------------- /man/runc-list.8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/man/runc-list.8.md -------------------------------------------------------------------------------- /man/runc-pause.8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/man/runc-pause.8.md -------------------------------------------------------------------------------- /man/runc-ps.8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/man/runc-ps.8.md -------------------------------------------------------------------------------- /man/runc-restore.8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/man/runc-restore.8.md -------------------------------------------------------------------------------- /man/runc-resume.8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/man/runc-resume.8.md -------------------------------------------------------------------------------- /man/runc-run.8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/man/runc-run.8.md -------------------------------------------------------------------------------- /man/runc-spec.8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/man/runc-spec.8.md -------------------------------------------------------------------------------- /man/runc-start.8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/man/runc-start.8.md -------------------------------------------------------------------------------- /man/runc-state.8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/man/runc-state.8.md -------------------------------------------------------------------------------- /man/runc-update.8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/man/runc-update.8.md -------------------------------------------------------------------------------- /man/runc.8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/man/runc.8.md -------------------------------------------------------------------------------- /notify_socket.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/notify_socket.go -------------------------------------------------------------------------------- /pause.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/pause.go -------------------------------------------------------------------------------- /ps.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/ps.go -------------------------------------------------------------------------------- /restore.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/restore.go -------------------------------------------------------------------------------- /rlimit_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/rlimit_linux.go -------------------------------------------------------------------------------- /run.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/run.go -------------------------------------------------------------------------------- /script/.validate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/script/.validate -------------------------------------------------------------------------------- /script/check-config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/script/check-config.sh -------------------------------------------------------------------------------- /script/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/script/release.sh -------------------------------------------------------------------------------- /script/tmpmount: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | mount -t tmpfs none /tmp 4 | exec "$@" 5 | -------------------------------------------------------------------------------- /script/validate-gofmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/script/validate-gofmt -------------------------------------------------------------------------------- /signals.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/signals.go -------------------------------------------------------------------------------- /spec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/spec.go -------------------------------------------------------------------------------- /start.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/start.go -------------------------------------------------------------------------------- /state.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/state.go -------------------------------------------------------------------------------- /tests/integration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/tests/integration/README.md -------------------------------------------------------------------------------- /tests/integration/cgroups.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/tests/integration/cgroups.bats -------------------------------------------------------------------------------- /tests/integration/checkpoint.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/tests/integration/checkpoint.bats -------------------------------------------------------------------------------- /tests/integration/create.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/tests/integration/create.bats -------------------------------------------------------------------------------- /tests/integration/debug.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/tests/integration/debug.bats -------------------------------------------------------------------------------- /tests/integration/delete.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/tests/integration/delete.bats -------------------------------------------------------------------------------- /tests/integration/events.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/tests/integration/events.bats -------------------------------------------------------------------------------- /tests/integration/exec.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/tests/integration/exec.bats -------------------------------------------------------------------------------- /tests/integration/help.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/tests/integration/help.bats -------------------------------------------------------------------------------- /tests/integration/helpers.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/tests/integration/helpers.bash -------------------------------------------------------------------------------- /tests/integration/kill.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/tests/integration/kill.bats -------------------------------------------------------------------------------- /tests/integration/list.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/tests/integration/list.bats -------------------------------------------------------------------------------- /tests/integration/mask.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/tests/integration/mask.bats -------------------------------------------------------------------------------- /tests/integration/pause.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/tests/integration/pause.bats -------------------------------------------------------------------------------- /tests/integration/ps.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/tests/integration/ps.bats -------------------------------------------------------------------------------- /tests/integration/root.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/tests/integration/root.bats -------------------------------------------------------------------------------- /tests/integration/spec.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/tests/integration/spec.bats -------------------------------------------------------------------------------- /tests/integration/start.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/tests/integration/start.bats -------------------------------------------------------------------------------- /tests/integration/start_detached.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/tests/integration/start_detached.bats -------------------------------------------------------------------------------- /tests/integration/start_hello.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/tests/integration/start_hello.bats -------------------------------------------------------------------------------- /tests/integration/state.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/tests/integration/state.bats -------------------------------------------------------------------------------- /tests/integration/testdata/hello-world.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/tests/integration/testdata/hello-world.tar -------------------------------------------------------------------------------- /tests/integration/tty.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/tests/integration/tty.bats -------------------------------------------------------------------------------- /tests/integration/update.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/tests/integration/update.bats -------------------------------------------------------------------------------- /tests/integration/version.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/tests/integration/version.bats -------------------------------------------------------------------------------- /tty.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/tty.go -------------------------------------------------------------------------------- /update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/update.go -------------------------------------------------------------------------------- /utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/utils.go -------------------------------------------------------------------------------- /utils_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/utils_linux.go -------------------------------------------------------------------------------- /vendor.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor.conf -------------------------------------------------------------------------------- /vendor/github.com/coreos/go-systemd/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/coreos/go-systemd/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/coreos/go-systemd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/coreos/go-systemd/README.md -------------------------------------------------------------------------------- /vendor/github.com/coreos/go-systemd/activation/files.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/coreos/go-systemd/activation/files.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/go-systemd/activation/listeners.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/coreos/go-systemd/activation/listeners.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/go-systemd/activation/packetconns.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/coreos/go-systemd/activation/packetconns.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/go-systemd/dbus/dbus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/coreos/go-systemd/dbus/dbus.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/go-systemd/dbus/methods.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/coreos/go-systemd/dbus/methods.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/go-systemd/dbus/properties.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/coreos/go-systemd/dbus/properties.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/go-systemd/dbus/set.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/coreos/go-systemd/dbus/set.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/go-systemd/dbus/subscription.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/coreos/go-systemd/dbus/subscription.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/go-systemd/dbus/subscription_set.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/coreos/go-systemd/dbus/subscription_set.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/go-systemd/util/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/coreos/go-systemd/util/util.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/go-systemd/util/util_cgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/coreos/go-systemd/util/util_cgo.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/go-systemd/util/util_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/coreos/go-systemd/util/util_stub.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/pkg/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/coreos/pkg/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/coreos/pkg/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/coreos/pkg/NOTICE -------------------------------------------------------------------------------- /vendor/github.com/coreos/pkg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/coreos/pkg/README.md -------------------------------------------------------------------------------- /vendor/github.com/coreos/pkg/dlopen/dlopen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/coreos/pkg/dlopen/dlopen.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/pkg/dlopen/dlopen_example.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/coreos/pkg/dlopen/dlopen_example.go -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/docker/docker/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/docker/docker/NOTICE -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/docker/docker/README.md -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/pkg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/docker/docker/pkg/README.md -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/pkg/mount/flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/docker/docker/pkg/mount/flags.go -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/pkg/mount/flags_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/docker/docker/pkg/mount/flags_freebsd.go -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/pkg/mount/flags_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/docker/docker/pkg/mount/flags_linux.go -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/pkg/mount/flags_unsupported.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/docker/docker/pkg/mount/flags_unsupported.go -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/pkg/mount/mount.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/docker/docker/pkg/mount/mount.go -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/pkg/mount/mounter_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/docker/docker/pkg/mount/mounter_freebsd.go -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/pkg/mount/mounter_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/docker/docker/pkg/mount/mounter_linux.go -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/pkg/mount/mounter_unsupported.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/docker/docker/pkg/mount/mounter_unsupported.go -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/pkg/mount/mountinfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/docker/docker/pkg/mount/mountinfo.go -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/pkg/mount/mountinfo_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/docker/docker/pkg/mount/mountinfo_freebsd.go -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/pkg/mount/mountinfo_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/docker/docker/pkg/mount/mountinfo_linux.go -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/pkg/mount/mountinfo_unsupported.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/docker/docker/pkg/mount/mountinfo_unsupported.go -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/pkg/mount/sharedsubtree_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/docker/docker/pkg/mount/sharedsubtree_linux.go -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/pkg/symlink/LICENSE.APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/docker/docker/pkg/symlink/LICENSE.APACHE -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/pkg/symlink/LICENSE.BSD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/docker/docker/pkg/symlink/LICENSE.BSD -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/pkg/symlink/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/docker/docker/pkg/symlink/README.md -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/pkg/symlink/fs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/docker/docker/pkg/symlink/fs.go -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/pkg/term/tc_linux_cgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/docker/docker/pkg/term/tc_linux_cgo.go -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/pkg/term/tc_other.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/docker/docker/pkg/term/tc_other.go -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/pkg/term/term.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/docker/docker/pkg/term/term.go -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/pkg/term/term_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/docker/docker/pkg/term/term_windows.go -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/pkg/term/termios_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/docker/docker/pkg/term/termios_darwin.go -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/pkg/term/termios_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/docker/docker/pkg/term/termios_freebsd.go -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/pkg/term/termios_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/docker/docker/pkg/term/termios_linux.go -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/pkg/term/winconsole/console_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/docker/docker/pkg/term/winconsole/console_windows.go -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/pkg/term/winconsole/term_emulator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/docker/docker/pkg/term/winconsole/term_emulator.go -------------------------------------------------------------------------------- /vendor/github.com/docker/go-units/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/docker/go-units/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/docker/go-units/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/docker/go-units/README.md -------------------------------------------------------------------------------- /vendor/github.com/docker/go-units/duration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/docker/go-units/duration.go -------------------------------------------------------------------------------- /vendor/github.com/docker/go-units/size.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/docker/go-units/size.go -------------------------------------------------------------------------------- /vendor/github.com/godbus/dbus/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/godbus/dbus/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/godbus/dbus/README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/godbus/dbus/README.markdown -------------------------------------------------------------------------------- /vendor/github.com/godbus/dbus/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/godbus/dbus/auth.go -------------------------------------------------------------------------------- /vendor/github.com/godbus/dbus/auth_external.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/godbus/dbus/auth_external.go -------------------------------------------------------------------------------- /vendor/github.com/godbus/dbus/auth_sha1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/godbus/dbus/auth_sha1.go -------------------------------------------------------------------------------- /vendor/github.com/godbus/dbus/call.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/godbus/dbus/call.go -------------------------------------------------------------------------------- /vendor/github.com/godbus/dbus/conn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/godbus/dbus/conn.go -------------------------------------------------------------------------------- /vendor/github.com/godbus/dbus/conn_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/godbus/dbus/conn_darwin.go -------------------------------------------------------------------------------- /vendor/github.com/godbus/dbus/conn_other.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/godbus/dbus/conn_other.go -------------------------------------------------------------------------------- /vendor/github.com/godbus/dbus/dbus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/godbus/dbus/dbus.go -------------------------------------------------------------------------------- /vendor/github.com/godbus/dbus/decoder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/godbus/dbus/decoder.go -------------------------------------------------------------------------------- /vendor/github.com/godbus/dbus/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/godbus/dbus/doc.go -------------------------------------------------------------------------------- /vendor/github.com/godbus/dbus/encoder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/godbus/dbus/encoder.go -------------------------------------------------------------------------------- /vendor/github.com/godbus/dbus/export.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/godbus/dbus/export.go -------------------------------------------------------------------------------- /vendor/github.com/godbus/dbus/homedir.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/godbus/dbus/homedir.go -------------------------------------------------------------------------------- /vendor/github.com/godbus/dbus/homedir_dynamic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/godbus/dbus/homedir_dynamic.go -------------------------------------------------------------------------------- /vendor/github.com/godbus/dbus/homedir_static.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/godbus/dbus/homedir_static.go -------------------------------------------------------------------------------- /vendor/github.com/godbus/dbus/message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/godbus/dbus/message.go -------------------------------------------------------------------------------- /vendor/github.com/godbus/dbus/object.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/godbus/dbus/object.go -------------------------------------------------------------------------------- /vendor/github.com/godbus/dbus/sig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/godbus/dbus/sig.go -------------------------------------------------------------------------------- /vendor/github.com/godbus/dbus/transport_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/godbus/dbus/transport_darwin.go -------------------------------------------------------------------------------- /vendor/github.com/godbus/dbus/transport_generic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/godbus/dbus/transport_generic.go -------------------------------------------------------------------------------- /vendor/github.com/godbus/dbus/transport_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/godbus/dbus/transport_unix.go -------------------------------------------------------------------------------- /vendor/github.com/godbus/dbus/transport_unixcred_dragonfly.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/godbus/dbus/transport_unixcred_dragonfly.go -------------------------------------------------------------------------------- /vendor/github.com/godbus/dbus/transport_unixcred_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/godbus/dbus/transport_unixcred_linux.go -------------------------------------------------------------------------------- /vendor/github.com/godbus/dbus/variant.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/godbus/dbus/variant.go -------------------------------------------------------------------------------- /vendor/github.com/godbus/dbus/variant_lexer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/godbus/dbus/variant_lexer.go -------------------------------------------------------------------------------- /vendor/github.com/godbus/dbus/variant_parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/godbus/dbus/variant_parser.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/golang/protobuf/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/golang/protobuf/README.md -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/proto/clone.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/golang/protobuf/proto/clone.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/proto/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/golang/protobuf/proto/decode.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/proto/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/golang/protobuf/proto/encode.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/proto/equal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/golang/protobuf/proto/equal.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/proto/extensions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/golang/protobuf/proto/extensions.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/proto/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/golang/protobuf/proto/lib.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/proto/message_set.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/golang/protobuf/proto/message_set.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/proto/pointer_reflect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/golang/protobuf/proto/pointer_reflect.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/proto/pointer_unsafe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/golang/protobuf/proto/pointer_unsafe.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/proto/properties.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/golang/protobuf/proto/properties.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/proto/text.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/golang/protobuf/proto/text.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/proto/text_parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/golang/protobuf/proto/text_parser.go -------------------------------------------------------------------------------- /vendor/github.com/mrunalp/fileutils/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/mrunalp/fileutils/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/mrunalp/fileutils/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/mrunalp/fileutils/README.md -------------------------------------------------------------------------------- /vendor/github.com/mrunalp/fileutils/fileutils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/mrunalp/fileutils/fileutils.go -------------------------------------------------------------------------------- /vendor/github.com/mrunalp/fileutils/idtools.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/mrunalp/fileutils/idtools.go -------------------------------------------------------------------------------- /vendor/github.com/opencontainers/runtime-spec/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/opencontainers/runtime-spec/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/opencontainers/runtime-spec/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/opencontainers/runtime-spec/README.md -------------------------------------------------------------------------------- /vendor/github.com/opencontainers/runtime-spec/specs-go/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/opencontainers/runtime-spec/specs-go/config.go -------------------------------------------------------------------------------- /vendor/github.com/opencontainers/runtime-spec/specs-go/state.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/opencontainers/runtime-spec/specs-go/state.go -------------------------------------------------------------------------------- /vendor/github.com/opencontainers/runtime-spec/specs-go/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/opencontainers/runtime-spec/specs-go/version.go -------------------------------------------------------------------------------- /vendor/github.com/opencontainers/selinux/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/opencontainers/selinux/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/opencontainers/selinux/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/opencontainers/selinux/README.md -------------------------------------------------------------------------------- /vendor/github.com/opencontainers/selinux/go-selinux/label/label.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/opencontainers/selinux/go-selinux/label/label.go -------------------------------------------------------------------------------- /vendor/github.com/opencontainers/selinux/go-selinux/label/label_selinux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/opencontainers/selinux/go-selinux/label/label_selinux.go -------------------------------------------------------------------------------- /vendor/github.com/opencontainers/selinux/go-selinux/selinux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/opencontainers/selinux/go-selinux/selinux.go -------------------------------------------------------------------------------- /vendor/github.com/opencontainers/selinux/go-selinux/xattrs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/opencontainers/selinux/go-selinux/xattrs.go -------------------------------------------------------------------------------- /vendor/github.com/seccomp/libseccomp-golang/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/seccomp/libseccomp-golang/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/seccomp/libseccomp-golang/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/seccomp/libseccomp-golang/README -------------------------------------------------------------------------------- /vendor/github.com/seccomp/libseccomp-golang/seccomp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/seccomp/libseccomp-golang/seccomp.go -------------------------------------------------------------------------------- /vendor/github.com/seccomp/libseccomp-golang/seccomp_internal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/seccomp/libseccomp-golang/seccomp_internal.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/sirupsen/logrus/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/sirupsen/logrus/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/sirupsen/logrus/README.md -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/alt_exit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/sirupsen/logrus/alt_exit.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/sirupsen/logrus/doc.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/entry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/sirupsen/logrus/entry.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/exported.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/sirupsen/logrus/exported.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/formatter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/sirupsen/logrus/formatter.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/hooks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/sirupsen/logrus/hooks.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/json_formatter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/sirupsen/logrus/json_formatter.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/sirupsen/logrus/logger.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/logrus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/sirupsen/logrus/logrus.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/terminal_appengine.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/sirupsen/logrus/terminal_appengine.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/terminal_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/sirupsen/logrus/terminal_bsd.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/terminal_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/sirupsen/logrus/terminal_linux.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/terminal_notwindows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/sirupsen/logrus/terminal_notwindows.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/terminal_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/sirupsen/logrus/terminal_solaris.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/terminal_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/sirupsen/logrus/terminal_windows.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/text_formatter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/sirupsen/logrus/text_formatter.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/sirupsen/logrus/writer.go -------------------------------------------------------------------------------- /vendor/github.com/syndtr/gocapability/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/syndtr/gocapability/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/syndtr/gocapability/capability/capability.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/syndtr/gocapability/capability/capability.go -------------------------------------------------------------------------------- /vendor/github.com/syndtr/gocapability/capability/capability_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/syndtr/gocapability/capability/capability_linux.go -------------------------------------------------------------------------------- /vendor/github.com/syndtr/gocapability/capability/capability_noop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/syndtr/gocapability/capability/capability_noop.go -------------------------------------------------------------------------------- /vendor/github.com/syndtr/gocapability/capability/enum.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/syndtr/gocapability/capability/enum.go -------------------------------------------------------------------------------- /vendor/github.com/syndtr/gocapability/capability/enum_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/syndtr/gocapability/capability/enum_gen.go -------------------------------------------------------------------------------- /vendor/github.com/syndtr/gocapability/capability/syscall_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/syndtr/gocapability/capability/syscall_linux.go -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/urfave/cli/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/urfave/cli/README.md -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/urfave/cli/app.go -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/category.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/urfave/cli/category.go -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/cli.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/urfave/cli/cli.go -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/urfave/cli/command.go -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/urfave/cli/context.go -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/urfave/cli/errors.go -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/flag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/urfave/cli/flag.go -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/flag_generated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/urfave/cli/flag_generated.go -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/funcs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/urfave/cli/funcs.go -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/help.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/urfave/cli/help.go -------------------------------------------------------------------------------- /vendor/github.com/vishvananda/netlink/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/vishvananda/netlink/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/vishvananda/netlink/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/vishvananda/netlink/README.md -------------------------------------------------------------------------------- /vendor/github.com/vishvananda/netlink/addr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/vishvananda/netlink/addr.go -------------------------------------------------------------------------------- /vendor/github.com/vishvananda/netlink/addr_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/vishvananda/netlink/addr_linux.go -------------------------------------------------------------------------------- /vendor/github.com/vishvananda/netlink/filter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/vishvananda/netlink/filter.go -------------------------------------------------------------------------------- /vendor/github.com/vishvananda/netlink/filter_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/vishvananda/netlink/filter_linux.go -------------------------------------------------------------------------------- /vendor/github.com/vishvananda/netlink/link.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/vishvananda/netlink/link.go -------------------------------------------------------------------------------- /vendor/github.com/vishvananda/netlink/link_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/vishvananda/netlink/link_linux.go -------------------------------------------------------------------------------- /vendor/github.com/vishvananda/netlink/neigh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/vishvananda/netlink/neigh.go -------------------------------------------------------------------------------- /vendor/github.com/vishvananda/netlink/neigh_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/vishvananda/netlink/neigh_linux.go -------------------------------------------------------------------------------- /vendor/github.com/vishvananda/netlink/netlink.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/vishvananda/netlink/netlink.go -------------------------------------------------------------------------------- /vendor/github.com/vishvananda/netlink/netlink_unspecified.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/vishvananda/netlink/netlink_unspecified.go -------------------------------------------------------------------------------- /vendor/github.com/vishvananda/netlink/nl/addr_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/vishvananda/netlink/nl/addr_linux.go -------------------------------------------------------------------------------- /vendor/github.com/vishvananda/netlink/nl/link_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/vishvananda/netlink/nl/link_linux.go -------------------------------------------------------------------------------- /vendor/github.com/vishvananda/netlink/nl/nl_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/vishvananda/netlink/nl/nl_linux.go -------------------------------------------------------------------------------- /vendor/github.com/vishvananda/netlink/nl/route_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/vishvananda/netlink/nl/route_linux.go -------------------------------------------------------------------------------- /vendor/github.com/vishvananda/netlink/nl/tc_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/vishvananda/netlink/nl/tc_linux.go -------------------------------------------------------------------------------- /vendor/github.com/vishvananda/netlink/nl/xfrm_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/vishvananda/netlink/nl/xfrm_linux.go -------------------------------------------------------------------------------- /vendor/github.com/vishvananda/netlink/nl/xfrm_policy_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/vishvananda/netlink/nl/xfrm_policy_linux.go -------------------------------------------------------------------------------- /vendor/github.com/vishvananda/netlink/nl/xfrm_state_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/vishvananda/netlink/nl/xfrm_state_linux.go -------------------------------------------------------------------------------- /vendor/github.com/vishvananda/netlink/protinfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/vishvananda/netlink/protinfo.go -------------------------------------------------------------------------------- /vendor/github.com/vishvananda/netlink/protinfo_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/vishvananda/netlink/protinfo_linux.go -------------------------------------------------------------------------------- /vendor/github.com/vishvananda/netlink/qdisc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/vishvananda/netlink/qdisc.go -------------------------------------------------------------------------------- /vendor/github.com/vishvananda/netlink/qdisc_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/vishvananda/netlink/qdisc_linux.go -------------------------------------------------------------------------------- /vendor/github.com/vishvananda/netlink/route.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/vishvananda/netlink/route.go -------------------------------------------------------------------------------- /vendor/github.com/vishvananda/netlink/route_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/vishvananda/netlink/route_linux.go -------------------------------------------------------------------------------- /vendor/github.com/vishvananda/netlink/xfrm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/vishvananda/netlink/xfrm.go -------------------------------------------------------------------------------- /vendor/github.com/vishvananda/netlink/xfrm_policy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/vishvananda/netlink/xfrm_policy.go -------------------------------------------------------------------------------- /vendor/github.com/vishvananda/netlink/xfrm_policy_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/vishvananda/netlink/xfrm_policy_linux.go -------------------------------------------------------------------------------- /vendor/github.com/vishvananda/netlink/xfrm_state.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/vishvananda/netlink/xfrm_state.go -------------------------------------------------------------------------------- /vendor/github.com/vishvananda/netlink/xfrm_state_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/github.com/vishvananda/netlink/xfrm_state_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/README -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/README.md -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_darwin_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/asm_darwin_386.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_darwin_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/asm_darwin_amd64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_darwin_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/asm_darwin_arm.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_darwin_arm64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/asm_darwin_arm64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_dragonfly_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/asm_dragonfly_amd64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_freebsd_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/asm_freebsd_386.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_freebsd_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/asm_freebsd_amd64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_freebsd_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/asm_freebsd_arm.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/asm_linux_386.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/asm_linux_amd64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/asm_linux_arm.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_arm64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/asm_linux_arm64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_mips64x.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/asm_linux_mips64x.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_mipsx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/asm_linux_mipsx.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_ppc64x.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/asm_linux_ppc64x.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_s390x.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/asm_linux_s390x.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_netbsd_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/asm_netbsd_386.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_netbsd_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/asm_netbsd_amd64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_netbsd_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/asm_netbsd_arm.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_openbsd_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/asm_openbsd_386.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_openbsd_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/asm_openbsd_amd64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_solaris_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/asm_solaris_amd64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/bluetooth_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/bluetooth_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/constants.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dirent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/dirent.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/endian_big.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/endian_big.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/endian_little.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/endian_little.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/env_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/env_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/env_unset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/env_unset.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/flock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/flock.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/flock_linux_32bit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/flock_linux_32bit.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/gccgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/gccgo.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/gccgo_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/gccgo_c.c -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/gccgo_linux_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/gccgo_linux_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/gccgo_linux_sparc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/gccgo_linux_sparc64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/openbsd_pledge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/openbsd_pledge.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/race.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/race0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/sockcmsg_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/sockcmsg_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/sockcmsg_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/sockcmsg_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/str.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/syscall.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/syscall_bsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/syscall_darwin.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_darwin_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/syscall_darwin_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_darwin_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/syscall_darwin_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_darwin_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/syscall_darwin_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_darwin_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/syscall_darwin_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_dragonfly.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/syscall_dragonfly.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_dragonfly_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/syscall_dragonfly_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/syscall_freebsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_freebsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/syscall_freebsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_freebsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/syscall_freebsd_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_freebsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/syscall_freebsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/syscall_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/syscall_linux_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/syscall_linux_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux_amd64_gc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/syscall_linux_amd64_gc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/syscall_linux_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/syscall_linux_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux_mips64x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/syscall_linux_mips64x.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux_mipsx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/syscall_linux_mipsx.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux_ppc64x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/syscall_linux_ppc64x.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux_s390x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/syscall_linux_s390x.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux_sparc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/syscall_linux_sparc64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/syscall_netbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_netbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/syscall_netbsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_netbsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/syscall_netbsd_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_netbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/syscall_netbsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_no_getwd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/syscall_no_getwd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/syscall_openbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_openbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/syscall_openbsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_openbsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/syscall_openbsd_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/syscall_solaris.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_solaris_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/syscall_solaris_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/syscall_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_unix_gc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/syscall_unix_gc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_darwin_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/zerrors_darwin_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_darwin_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/zerrors_darwin_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_darwin_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/zerrors_darwin_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_darwin_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/zerrors_darwin_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_dragonfly_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/zerrors_dragonfly_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_freebsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/zerrors_freebsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_freebsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/zerrors_freebsd_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_freebsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/zerrors_freebsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_linux_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/zerrors_linux_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_linux_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/zerrors_linux_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_linux_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/zerrors_linux_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_linux_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/zerrors_linux_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_linux_mips.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/zerrors_linux_mips.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_linux_mips64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/zerrors_linux_mips64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_linux_mips64le.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/zerrors_linux_mips64le.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_linux_mipsle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/zerrors_linux_mipsle.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_linux_ppc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/zerrors_linux_ppc64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_linux_ppc64le.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/zerrors_linux_ppc64le.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_linux_s390x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/zerrors_linux_s390x.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_linux_sparc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/zerrors_linux_sparc64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_netbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/zerrors_netbsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_netbsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/zerrors_netbsd_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_netbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/zerrors_netbsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_openbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/zerrors_openbsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_openbsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/zerrors_openbsd_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_solaris_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/zerrors_solaris_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_darwin_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/zsyscall_darwin_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_darwin_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/zsyscall_darwin_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_darwin_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/zsyscall_darwin_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_darwin_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/zsyscall_darwin_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_dragonfly_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/zsyscall_dragonfly_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_freebsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/zsyscall_freebsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_freebsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/zsyscall_freebsd_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_freebsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/zsyscall_freebsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_linux_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/zsyscall_linux_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_linux_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/zsyscall_linux_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_linux_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/zsyscall_linux_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_linux_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/zsyscall_linux_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_linux_mips.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/zsyscall_linux_mips.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_linux_mips64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/zsyscall_linux_mips64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_linux_mips64le.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/zsyscall_linux_mips64le.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_linux_mipsle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/zsyscall_linux_mipsle.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_linux_ppc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/zsyscall_linux_ppc64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_linux_ppc64le.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/zsyscall_linux_ppc64le.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_linux_s390x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/zsyscall_linux_s390x.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_linux_sparc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/zsyscall_linux_sparc64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_netbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/zsyscall_netbsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_netbsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/zsyscall_netbsd_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_netbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/zsyscall_netbsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_openbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/zsyscall_openbsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_openbsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/zsyscall_openbsd_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_solaris_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/zsyscall_solaris_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysctl_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/zsysctl_openbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_darwin_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/zsysnum_darwin_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_darwin_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/zsysnum_darwin_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_darwin_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/zsysnum_darwin_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_darwin_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/zsysnum_darwin_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_dragonfly_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/zsysnum_dragonfly_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_freebsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/zsysnum_freebsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_freebsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/zsysnum_freebsd_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_freebsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/zsysnum_freebsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_linux_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/zsysnum_linux_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_linux_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/zsysnum_linux_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_linux_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/zsysnum_linux_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_linux_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/zsysnum_linux_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_linux_mips.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/zsysnum_linux_mips.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_linux_mips64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/zsysnum_linux_mips64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_linux_mips64le.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/zsysnum_linux_mips64le.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_linux_mipsle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/zsysnum_linux_mipsle.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_linux_ppc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/zsysnum_linux_ppc64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_linux_ppc64le.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/zsysnum_linux_ppc64le.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_linux_s390x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/zsysnum_linux_s390x.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_linux_sparc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/zsysnum_linux_sparc64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_netbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/zsysnum_netbsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_netbsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/zsysnum_netbsd_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_netbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/zsysnum_netbsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_openbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/zsysnum_openbsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_openbsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/zsysnum_openbsd_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_solaris_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/zsysnum_solaris_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_darwin_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/ztypes_darwin_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_darwin_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/ztypes_darwin_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_darwin_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/ztypes_darwin_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_darwin_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/ztypes_darwin_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_dragonfly_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/ztypes_dragonfly_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_freebsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/ztypes_freebsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_freebsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/ztypes_freebsd_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_freebsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/ztypes_freebsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_linux_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/ztypes_linux_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_linux_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/ztypes_linux_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_linux_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/ztypes_linux_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_linux_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/ztypes_linux_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_linux_mips.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/ztypes_linux_mips.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_linux_mips64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/ztypes_linux_mips64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_linux_mips64le.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/ztypes_linux_mips64le.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_linux_mipsle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/ztypes_linux_mipsle.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_linux_ppc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/ztypes_linux_ppc64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_linux_ppc64le.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/ztypes_linux_ppc64le.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_linux_s390x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/ztypes_linux_s390x.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_linux_sparc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/ztypes_linux_sparc64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_netbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/ztypes_netbsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_netbsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/ztypes_netbsd_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_netbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/ztypes_netbsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_openbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/ztypes_openbsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_openbsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/ztypes_openbsd_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_solaris_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive/runc/HEAD/vendor/golang.org/x/sys/unix/ztypes_solaris_amd64.go --------------------------------------------------------------------------------