├── .github └── workflows │ └── build.yaml ├── .travis.yml ├── AUTHORS ├── Android.mk ├── COPYING ├── ChangeLog ├── INSTALL ├── Makefile.am ├── Makefile.in ├── NEWS ├── README-BUILD.md ├── README-DEVELOPER.md ├── README.md ├── TODO ├── aclocal.m4 ├── config.h.in ├── config ├── compile ├── config.guess ├── config.sub ├── depcomp ├── install-sh └── missing ├── configure ├── configure.ac ├── m4 ├── ChangeLog └── ax_check_compile_flag.m4 ├── man └── procenv.1 ├── procenv.spec ├── procenv.spec.in ├── reconf ├── scripts └── find-missing-symbols.sh ├── snap └── snapcraft.yaml └── src ├── Makefile.am ├── Makefile.in ├── messages.h ├── output.c ├── output.h ├── platform-headers.h ├── platform.h ├── platform ├── README.md ├── android │ └── platform.c ├── darwin │ ├── platform-darwin.h │ └── platform.c ├── freebsd │ ├── platform-freebsd.h │ └── platform.c ├── hurd │ ├── platform-hurd.h │ └── platform.c ├── linux │ ├── platform-linux.h │ └── platform.c ├── minix │ ├── platform-minix.h │ └── platform.c ├── netbsd │ ├── platform-netbsd.h │ └── platform.c ├── openbsd │ ├── platform-openbsd.h │ └── platform.c ├── platform-generic.c ├── platform-generic.h └── unknown │ ├── platform-unknown.h │ └── platform.c ├── pr_list.c ├── pr_list.h ├── procenv.c ├── procenv.h ├── pstring.c ├── pstring.h ├── string-util.c ├── string-util.h ├── tests ├── check_all_args.in ├── check_pr_list.c ├── show_compiler_details └── show_machine_details ├── types.h ├── util.c └── util.h /.github/workflows/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesodhunt/procenv/HEAD/.github/workflows/build.yaml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesodhunt/procenv/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesodhunt/procenv/HEAD/AUTHORS -------------------------------------------------------------------------------- /Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesodhunt/procenv/HEAD/Android.mk -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesodhunt/procenv/HEAD/COPYING -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesodhunt/procenv/HEAD/INSTALL -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesodhunt/procenv/HEAD/Makefile.am -------------------------------------------------------------------------------- /Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesodhunt/procenv/HEAD/Makefile.in -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesodhunt/procenv/HEAD/NEWS -------------------------------------------------------------------------------- /README-BUILD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesodhunt/procenv/HEAD/README-BUILD.md -------------------------------------------------------------------------------- /README-DEVELOPER.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesodhunt/procenv/HEAD/README-DEVELOPER.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesodhunt/procenv/HEAD/README.md -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesodhunt/procenv/HEAD/TODO -------------------------------------------------------------------------------- /aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesodhunt/procenv/HEAD/aclocal.m4 -------------------------------------------------------------------------------- /config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesodhunt/procenv/HEAD/config.h.in -------------------------------------------------------------------------------- /config/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesodhunt/procenv/HEAD/config/compile -------------------------------------------------------------------------------- /config/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesodhunt/procenv/HEAD/config/config.guess -------------------------------------------------------------------------------- /config/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesodhunt/procenv/HEAD/config/config.sub -------------------------------------------------------------------------------- /config/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesodhunt/procenv/HEAD/config/depcomp -------------------------------------------------------------------------------- /config/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesodhunt/procenv/HEAD/config/install-sh -------------------------------------------------------------------------------- /config/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesodhunt/procenv/HEAD/config/missing -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesodhunt/procenv/HEAD/configure -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesodhunt/procenv/HEAD/configure.ac -------------------------------------------------------------------------------- /m4/ChangeLog: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /m4/ax_check_compile_flag.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesodhunt/procenv/HEAD/m4/ax_check_compile_flag.m4 -------------------------------------------------------------------------------- /man/procenv.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesodhunt/procenv/HEAD/man/procenv.1 -------------------------------------------------------------------------------- /procenv.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesodhunt/procenv/HEAD/procenv.spec -------------------------------------------------------------------------------- /procenv.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesodhunt/procenv/HEAD/procenv.spec.in -------------------------------------------------------------------------------- /reconf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesodhunt/procenv/HEAD/reconf -------------------------------------------------------------------------------- /scripts/find-missing-symbols.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesodhunt/procenv/HEAD/scripts/find-missing-symbols.sh -------------------------------------------------------------------------------- /snap/snapcraft.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesodhunt/procenv/HEAD/snap/snapcraft.yaml -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesodhunt/procenv/HEAD/src/Makefile.am -------------------------------------------------------------------------------- /src/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesodhunt/procenv/HEAD/src/Makefile.in -------------------------------------------------------------------------------- /src/messages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesodhunt/procenv/HEAD/src/messages.h -------------------------------------------------------------------------------- /src/output.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesodhunt/procenv/HEAD/src/output.c -------------------------------------------------------------------------------- /src/output.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesodhunt/procenv/HEAD/src/output.h -------------------------------------------------------------------------------- /src/platform-headers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesodhunt/procenv/HEAD/src/platform-headers.h -------------------------------------------------------------------------------- /src/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesodhunt/procenv/HEAD/src/platform.h -------------------------------------------------------------------------------- /src/platform/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesodhunt/procenv/HEAD/src/platform/README.md -------------------------------------------------------------------------------- /src/platform/android/platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesodhunt/procenv/HEAD/src/platform/android/platform.c -------------------------------------------------------------------------------- /src/platform/darwin/platform-darwin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesodhunt/procenv/HEAD/src/platform/darwin/platform-darwin.h -------------------------------------------------------------------------------- /src/platform/darwin/platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesodhunt/procenv/HEAD/src/platform/darwin/platform.c -------------------------------------------------------------------------------- /src/platform/freebsd/platform-freebsd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesodhunt/procenv/HEAD/src/platform/freebsd/platform-freebsd.h -------------------------------------------------------------------------------- /src/platform/freebsd/platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesodhunt/procenv/HEAD/src/platform/freebsd/platform.c -------------------------------------------------------------------------------- /src/platform/hurd/platform-hurd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesodhunt/procenv/HEAD/src/platform/hurd/platform-hurd.h -------------------------------------------------------------------------------- /src/platform/hurd/platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesodhunt/procenv/HEAD/src/platform/hurd/platform.c -------------------------------------------------------------------------------- /src/platform/linux/platform-linux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesodhunt/procenv/HEAD/src/platform/linux/platform-linux.h -------------------------------------------------------------------------------- /src/platform/linux/platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesodhunt/procenv/HEAD/src/platform/linux/platform.c -------------------------------------------------------------------------------- /src/platform/minix/platform-minix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesodhunt/procenv/HEAD/src/platform/minix/platform-minix.h -------------------------------------------------------------------------------- /src/platform/minix/platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesodhunt/procenv/HEAD/src/platform/minix/platform.c -------------------------------------------------------------------------------- /src/platform/netbsd/platform-netbsd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesodhunt/procenv/HEAD/src/platform/netbsd/platform-netbsd.h -------------------------------------------------------------------------------- /src/platform/netbsd/platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesodhunt/procenv/HEAD/src/platform/netbsd/platform.c -------------------------------------------------------------------------------- /src/platform/openbsd/platform-openbsd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesodhunt/procenv/HEAD/src/platform/openbsd/platform-openbsd.h -------------------------------------------------------------------------------- /src/platform/openbsd/platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesodhunt/procenv/HEAD/src/platform/openbsd/platform.c -------------------------------------------------------------------------------- /src/platform/platform-generic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesodhunt/procenv/HEAD/src/platform/platform-generic.c -------------------------------------------------------------------------------- /src/platform/platform-generic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesodhunt/procenv/HEAD/src/platform/platform-generic.h -------------------------------------------------------------------------------- /src/platform/unknown/platform-unknown.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesodhunt/procenv/HEAD/src/platform/unknown/platform-unknown.h -------------------------------------------------------------------------------- /src/platform/unknown/platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesodhunt/procenv/HEAD/src/platform/unknown/platform.c -------------------------------------------------------------------------------- /src/pr_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesodhunt/procenv/HEAD/src/pr_list.c -------------------------------------------------------------------------------- /src/pr_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesodhunt/procenv/HEAD/src/pr_list.h -------------------------------------------------------------------------------- /src/procenv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesodhunt/procenv/HEAD/src/procenv.c -------------------------------------------------------------------------------- /src/procenv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesodhunt/procenv/HEAD/src/procenv.h -------------------------------------------------------------------------------- /src/pstring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesodhunt/procenv/HEAD/src/pstring.c -------------------------------------------------------------------------------- /src/pstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesodhunt/procenv/HEAD/src/pstring.h -------------------------------------------------------------------------------- /src/string-util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesodhunt/procenv/HEAD/src/string-util.c -------------------------------------------------------------------------------- /src/string-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesodhunt/procenv/HEAD/src/string-util.h -------------------------------------------------------------------------------- /src/tests/check_all_args.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesodhunt/procenv/HEAD/src/tests/check_all_args.in -------------------------------------------------------------------------------- /src/tests/check_pr_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesodhunt/procenv/HEAD/src/tests/check_pr_list.c -------------------------------------------------------------------------------- /src/tests/show_compiler_details: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesodhunt/procenv/HEAD/src/tests/show_compiler_details -------------------------------------------------------------------------------- /src/tests/show_machine_details: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesodhunt/procenv/HEAD/src/tests/show_machine_details -------------------------------------------------------------------------------- /src/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesodhunt/procenv/HEAD/src/types.h -------------------------------------------------------------------------------- /src/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesodhunt/procenv/HEAD/src/util.c -------------------------------------------------------------------------------- /src/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesodhunt/procenv/HEAD/src/util.h --------------------------------------------------------------------------------