├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── cpuid-detect.c ├── openvz-detect.c ├── slabbed-or-not.c ├── vmware-detect.c └── xen-detect.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaniini/slabbed-or-not/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaniini/slabbed-or-not/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaniini/slabbed-or-not/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaniini/slabbed-or-not/HEAD/README.md -------------------------------------------------------------------------------- /cpuid-detect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaniini/slabbed-or-not/HEAD/cpuid-detect.c -------------------------------------------------------------------------------- /openvz-detect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaniini/slabbed-or-not/HEAD/openvz-detect.c -------------------------------------------------------------------------------- /slabbed-or-not.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaniini/slabbed-or-not/HEAD/slabbed-or-not.c -------------------------------------------------------------------------------- /vmware-detect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaniini/slabbed-or-not/HEAD/vmware-detect.c -------------------------------------------------------------------------------- /xen-detect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaniini/slabbed-or-not/HEAD/xen-detect.c --------------------------------------------------------------------------------