├── .asf.yaml ├── .gitattributes ├── .github ├── GH-ROBOTS.txt ├── dependabot.yml ├── pull_request_template.md └── workflows │ ├── codeql-analysis.yml │ ├── dependency-review.yml │ ├── maven.yml │ ├── scorecards-analysis.yml │ └── windows.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── HOWTO-RELEASE.txt ├── LICENSE.txt ├── NOTICE.txt ├── PROPOSAL.html ├── README.md ├── RELEASE-NOTES.txt ├── SECURITY.md ├── pom.xml └── src ├── assembly ├── bin.xml ├── native-src.xml ├── src.xml └── win.xml ├── changes └── changes.xml ├── docs ├── daemon.css └── daemon.html ├── main └── java │ └── org │ └── apache │ └── commons │ └── daemon │ ├── Daemon.java │ ├── DaemonContext.java │ ├── DaemonController.java │ ├── DaemonInitException.java │ ├── DaemonListener.java │ ├── DaemonPermission.java │ ├── DaemonUserSignal.java │ └── support │ ├── DaemonConfiguration.java │ ├── DaemonLoader.java │ └── DaemonWrapper.java ├── media ├── commons-logo-component-100.xcf ├── commons-logo-component.xcf └── logo.png ├── native ├── unix │ ├── INSTALL.txt │ ├── Makedefs.in │ ├── Makefile.in │ ├── configure.ac │ ├── man │ │ ├── README.txt │ │ ├── fetch.sh │ │ └── jsvc.1.xml │ ├── native │ │ ├── .indent.pro │ │ ├── Makefile.in │ │ ├── arguments.c │ │ ├── arguments.h │ │ ├── debug.c │ │ ├── debug.h │ │ ├── dso-dlfcn.c │ │ ├── dso-dyld.c │ │ ├── dso.h │ │ ├── help.c │ │ ├── help.h │ │ ├── home.c │ │ ├── home.h │ │ ├── java.c │ │ ├── java.h │ │ ├── jsvc-unix.c │ │ ├── jsvc.h │ │ ├── location.c │ │ ├── location.h │ │ ├── locks.c │ │ ├── locks.h │ │ ├── replace.c │ │ ├── replace.h │ │ ├── signals.c │ │ ├── signals.h │ │ └── version.h │ └── support │ │ ├── apfunctions.m4 │ │ ├── apjava.m4 │ │ ├── apsupport.m4 │ │ └── buildconf.sh └── windows │ ├── README.txt │ ├── apps │ ├── prunmgr │ │ ├── Makefile │ │ ├── prunmgr.c │ │ ├── prunmgr.h │ │ ├── prunmgr.manifest │ │ └── prunmgr.rc │ └── prunsrv │ │ ├── Makefile │ │ ├── prunsrv.c │ │ ├── prunsrv.h │ │ ├── prunsrv.manifest │ │ ├── prunsrv.rc │ │ └── test │ │ └── scripts │ │ ├── cleanstd.bat │ │ ├── deleteservice.bat │ │ ├── isemptystd.bat │ │ ├── mybanner.bat │ │ ├── startservice.bat │ │ ├── stopservice.bat │ │ ├── test.bat │ │ ├── testservice.bat │ │ └── waituntilstop.bat │ ├── include │ ├── Makefile.inc │ ├── apxwin.h │ ├── cmdline.h │ ├── console.h │ ├── gui.h │ ├── handles.h │ ├── javajni.h │ ├── log.h │ ├── registry.h │ ├── rprocess.h │ ├── security.h │ └── service.h │ ├── resources │ ├── commons.bmp │ ├── procrunr.ico │ ├── procruns.ico │ ├── procrunw.ico │ └── susers.bmp │ ├── src │ ├── cmdline.c │ ├── console.c │ ├── gui.c │ ├── handles.c │ ├── javajni.c │ ├── log.c │ ├── mclib.c │ ├── mclib.h │ ├── private.h │ ├── registry.c │ ├── rprocess.c │ ├── security.c │ ├── service.c │ └── utils.c │ └── xdocs │ └── index.xml ├── samples ├── AloneDaemon.sh ├── AloneService.java ├── Native.c ├── Native.sh ├── ProcrunService.java ├── ProcrunServiceInstall.cmd ├── ProcrunServiceRemove.cmd ├── README.txt ├── ServiceDaemon.java ├── ServiceDaemon.sh ├── ServiceDaemonReadThread.java ├── SimpleApplication.java ├── SimpleApplication.sh ├── SimpleDaemon.java ├── SimpleDaemon.sh └── build.xml ├── site ├── resources │ ├── download_daemon.cgi │ ├── images │ │ └── logo.png │ ├── profile.jacoco │ └── profile.japicmp ├── site.xml └── xdoc │ ├── binaries.xml │ ├── download_daemon.xml │ ├── faq.xml │ ├── index.xml │ ├── issue-tracking.xml │ ├── jsvc.xml │ ├── mail-lists.xml │ ├── procrun.xml │ └── security.xml └── test └── java └── org └── apache └── commons └── daemon ├── DaemonInitExceptionTest.java ├── ProcrunDaemon.java └── SimpleDaemon.java /.asf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/.asf.yaml -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/GH-ROBOTS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/.github/GH-ROBOTS.txt -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/dependency-review.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/.github/workflows/dependency-review.yml -------------------------------------------------------------------------------- /.github/workflows/maven.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/.github/workflows/maven.yml -------------------------------------------------------------------------------- /.github/workflows/scorecards-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/.github/workflows/scorecards-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/windows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/.github/workflows/windows.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /HOWTO-RELEASE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/HOWTO-RELEASE.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/NOTICE.txt -------------------------------------------------------------------------------- /PROPOSAL.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/PROPOSAL.html -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE-NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/RELEASE-NOTES.txt -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/SECURITY.md -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/pom.xml -------------------------------------------------------------------------------- /src/assembly/bin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/assembly/bin.xml -------------------------------------------------------------------------------- /src/assembly/native-src.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/assembly/native-src.xml -------------------------------------------------------------------------------- /src/assembly/src.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/assembly/src.xml -------------------------------------------------------------------------------- /src/assembly/win.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/assembly/win.xml -------------------------------------------------------------------------------- /src/changes/changes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/changes/changes.xml -------------------------------------------------------------------------------- /src/docs/daemon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/docs/daemon.css -------------------------------------------------------------------------------- /src/docs/daemon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/docs/daemon.html -------------------------------------------------------------------------------- /src/main/java/org/apache/commons/daemon/Daemon.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/main/java/org/apache/commons/daemon/Daemon.java -------------------------------------------------------------------------------- /src/main/java/org/apache/commons/daemon/DaemonContext.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/main/java/org/apache/commons/daemon/DaemonContext.java -------------------------------------------------------------------------------- /src/main/java/org/apache/commons/daemon/DaemonController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/main/java/org/apache/commons/daemon/DaemonController.java -------------------------------------------------------------------------------- /src/main/java/org/apache/commons/daemon/DaemonInitException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/main/java/org/apache/commons/daemon/DaemonInitException.java -------------------------------------------------------------------------------- /src/main/java/org/apache/commons/daemon/DaemonListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/main/java/org/apache/commons/daemon/DaemonListener.java -------------------------------------------------------------------------------- /src/main/java/org/apache/commons/daemon/DaemonPermission.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/main/java/org/apache/commons/daemon/DaemonPermission.java -------------------------------------------------------------------------------- /src/main/java/org/apache/commons/daemon/DaemonUserSignal.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/main/java/org/apache/commons/daemon/DaemonUserSignal.java -------------------------------------------------------------------------------- /src/main/java/org/apache/commons/daemon/support/DaemonConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/main/java/org/apache/commons/daemon/support/DaemonConfiguration.java -------------------------------------------------------------------------------- /src/main/java/org/apache/commons/daemon/support/DaemonLoader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/main/java/org/apache/commons/daemon/support/DaemonLoader.java -------------------------------------------------------------------------------- /src/main/java/org/apache/commons/daemon/support/DaemonWrapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/main/java/org/apache/commons/daemon/support/DaemonWrapper.java -------------------------------------------------------------------------------- /src/media/commons-logo-component-100.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/media/commons-logo-component-100.xcf -------------------------------------------------------------------------------- /src/media/commons-logo-component.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/media/commons-logo-component.xcf -------------------------------------------------------------------------------- /src/media/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/media/logo.png -------------------------------------------------------------------------------- /src/native/unix/INSTALL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/native/unix/INSTALL.txt -------------------------------------------------------------------------------- /src/native/unix/Makedefs.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/native/unix/Makedefs.in -------------------------------------------------------------------------------- /src/native/unix/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/native/unix/Makefile.in -------------------------------------------------------------------------------- /src/native/unix/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/native/unix/configure.ac -------------------------------------------------------------------------------- /src/native/unix/man/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/native/unix/man/README.txt -------------------------------------------------------------------------------- /src/native/unix/man/fetch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/native/unix/man/fetch.sh -------------------------------------------------------------------------------- /src/native/unix/man/jsvc.1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/native/unix/man/jsvc.1.xml -------------------------------------------------------------------------------- /src/native/unix/native/.indent.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/native/unix/native/.indent.pro -------------------------------------------------------------------------------- /src/native/unix/native/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/native/unix/native/Makefile.in -------------------------------------------------------------------------------- /src/native/unix/native/arguments.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/native/unix/native/arguments.c -------------------------------------------------------------------------------- /src/native/unix/native/arguments.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/native/unix/native/arguments.h -------------------------------------------------------------------------------- /src/native/unix/native/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/native/unix/native/debug.c -------------------------------------------------------------------------------- /src/native/unix/native/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/native/unix/native/debug.h -------------------------------------------------------------------------------- /src/native/unix/native/dso-dlfcn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/native/unix/native/dso-dlfcn.c -------------------------------------------------------------------------------- /src/native/unix/native/dso-dyld.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/native/unix/native/dso-dyld.c -------------------------------------------------------------------------------- /src/native/unix/native/dso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/native/unix/native/dso.h -------------------------------------------------------------------------------- /src/native/unix/native/help.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/native/unix/native/help.c -------------------------------------------------------------------------------- /src/native/unix/native/help.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/native/unix/native/help.h -------------------------------------------------------------------------------- /src/native/unix/native/home.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/native/unix/native/home.c -------------------------------------------------------------------------------- /src/native/unix/native/home.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/native/unix/native/home.h -------------------------------------------------------------------------------- /src/native/unix/native/java.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/native/unix/native/java.c -------------------------------------------------------------------------------- /src/native/unix/native/java.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/native/unix/native/java.h -------------------------------------------------------------------------------- /src/native/unix/native/jsvc-unix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/native/unix/native/jsvc-unix.c -------------------------------------------------------------------------------- /src/native/unix/native/jsvc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/native/unix/native/jsvc.h -------------------------------------------------------------------------------- /src/native/unix/native/location.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/native/unix/native/location.c -------------------------------------------------------------------------------- /src/native/unix/native/location.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/native/unix/native/location.h -------------------------------------------------------------------------------- /src/native/unix/native/locks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/native/unix/native/locks.c -------------------------------------------------------------------------------- /src/native/unix/native/locks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/native/unix/native/locks.h -------------------------------------------------------------------------------- /src/native/unix/native/replace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/native/unix/native/replace.c -------------------------------------------------------------------------------- /src/native/unix/native/replace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/native/unix/native/replace.h -------------------------------------------------------------------------------- /src/native/unix/native/signals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/native/unix/native/signals.c -------------------------------------------------------------------------------- /src/native/unix/native/signals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/native/unix/native/signals.h -------------------------------------------------------------------------------- /src/native/unix/native/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/native/unix/native/version.h -------------------------------------------------------------------------------- /src/native/unix/support/apfunctions.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/native/unix/support/apfunctions.m4 -------------------------------------------------------------------------------- /src/native/unix/support/apjava.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/native/unix/support/apjava.m4 -------------------------------------------------------------------------------- /src/native/unix/support/apsupport.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/native/unix/support/apsupport.m4 -------------------------------------------------------------------------------- /src/native/unix/support/buildconf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/native/unix/support/buildconf.sh -------------------------------------------------------------------------------- /src/native/windows/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/native/windows/README.txt -------------------------------------------------------------------------------- /src/native/windows/apps/prunmgr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/native/windows/apps/prunmgr/Makefile -------------------------------------------------------------------------------- /src/native/windows/apps/prunmgr/prunmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/native/windows/apps/prunmgr/prunmgr.c -------------------------------------------------------------------------------- /src/native/windows/apps/prunmgr/prunmgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/native/windows/apps/prunmgr/prunmgr.h -------------------------------------------------------------------------------- /src/native/windows/apps/prunmgr/prunmgr.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/native/windows/apps/prunmgr/prunmgr.manifest -------------------------------------------------------------------------------- /src/native/windows/apps/prunmgr/prunmgr.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/native/windows/apps/prunmgr/prunmgr.rc -------------------------------------------------------------------------------- /src/native/windows/apps/prunsrv/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/native/windows/apps/prunsrv/Makefile -------------------------------------------------------------------------------- /src/native/windows/apps/prunsrv/prunsrv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/native/windows/apps/prunsrv/prunsrv.c -------------------------------------------------------------------------------- /src/native/windows/apps/prunsrv/prunsrv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/native/windows/apps/prunsrv/prunsrv.h -------------------------------------------------------------------------------- /src/native/windows/apps/prunsrv/prunsrv.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/native/windows/apps/prunsrv/prunsrv.manifest -------------------------------------------------------------------------------- /src/native/windows/apps/prunsrv/prunsrv.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/native/windows/apps/prunsrv/prunsrv.rc -------------------------------------------------------------------------------- /src/native/windows/apps/prunsrv/test/scripts/cleanstd.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/native/windows/apps/prunsrv/test/scripts/cleanstd.bat -------------------------------------------------------------------------------- /src/native/windows/apps/prunsrv/test/scripts/deleteservice.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/native/windows/apps/prunsrv/test/scripts/deleteservice.bat -------------------------------------------------------------------------------- /src/native/windows/apps/prunsrv/test/scripts/isemptystd.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/native/windows/apps/prunsrv/test/scripts/isemptystd.bat -------------------------------------------------------------------------------- /src/native/windows/apps/prunsrv/test/scripts/mybanner.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/native/windows/apps/prunsrv/test/scripts/mybanner.bat -------------------------------------------------------------------------------- /src/native/windows/apps/prunsrv/test/scripts/startservice.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/native/windows/apps/prunsrv/test/scripts/startservice.bat -------------------------------------------------------------------------------- /src/native/windows/apps/prunsrv/test/scripts/stopservice.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/native/windows/apps/prunsrv/test/scripts/stopservice.bat -------------------------------------------------------------------------------- /src/native/windows/apps/prunsrv/test/scripts/test.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/native/windows/apps/prunsrv/test/scripts/test.bat -------------------------------------------------------------------------------- /src/native/windows/apps/prunsrv/test/scripts/testservice.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/native/windows/apps/prunsrv/test/scripts/testservice.bat -------------------------------------------------------------------------------- /src/native/windows/apps/prunsrv/test/scripts/waituntilstop.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/native/windows/apps/prunsrv/test/scripts/waituntilstop.bat -------------------------------------------------------------------------------- /src/native/windows/include/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/native/windows/include/Makefile.inc -------------------------------------------------------------------------------- /src/native/windows/include/apxwin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/native/windows/include/apxwin.h -------------------------------------------------------------------------------- /src/native/windows/include/cmdline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/native/windows/include/cmdline.h -------------------------------------------------------------------------------- /src/native/windows/include/console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/native/windows/include/console.h -------------------------------------------------------------------------------- /src/native/windows/include/gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/native/windows/include/gui.h -------------------------------------------------------------------------------- /src/native/windows/include/handles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/native/windows/include/handles.h -------------------------------------------------------------------------------- /src/native/windows/include/javajni.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/native/windows/include/javajni.h -------------------------------------------------------------------------------- /src/native/windows/include/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/native/windows/include/log.h -------------------------------------------------------------------------------- /src/native/windows/include/registry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/native/windows/include/registry.h -------------------------------------------------------------------------------- /src/native/windows/include/rprocess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/native/windows/include/rprocess.h -------------------------------------------------------------------------------- /src/native/windows/include/security.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/native/windows/include/security.h -------------------------------------------------------------------------------- /src/native/windows/include/service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/native/windows/include/service.h -------------------------------------------------------------------------------- /src/native/windows/resources/commons.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/native/windows/resources/commons.bmp -------------------------------------------------------------------------------- /src/native/windows/resources/procrunr.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/native/windows/resources/procrunr.ico -------------------------------------------------------------------------------- /src/native/windows/resources/procruns.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/native/windows/resources/procruns.ico -------------------------------------------------------------------------------- /src/native/windows/resources/procrunw.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/native/windows/resources/procrunw.ico -------------------------------------------------------------------------------- /src/native/windows/resources/susers.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/native/windows/resources/susers.bmp -------------------------------------------------------------------------------- /src/native/windows/src/cmdline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/native/windows/src/cmdline.c -------------------------------------------------------------------------------- /src/native/windows/src/console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/native/windows/src/console.c -------------------------------------------------------------------------------- /src/native/windows/src/gui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/native/windows/src/gui.c -------------------------------------------------------------------------------- /src/native/windows/src/handles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/native/windows/src/handles.c -------------------------------------------------------------------------------- /src/native/windows/src/javajni.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/native/windows/src/javajni.c -------------------------------------------------------------------------------- /src/native/windows/src/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/native/windows/src/log.c -------------------------------------------------------------------------------- /src/native/windows/src/mclib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/native/windows/src/mclib.c -------------------------------------------------------------------------------- /src/native/windows/src/mclib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/native/windows/src/mclib.h -------------------------------------------------------------------------------- /src/native/windows/src/private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/native/windows/src/private.h -------------------------------------------------------------------------------- /src/native/windows/src/registry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/native/windows/src/registry.c -------------------------------------------------------------------------------- /src/native/windows/src/rprocess.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/native/windows/src/rprocess.c -------------------------------------------------------------------------------- /src/native/windows/src/security.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/native/windows/src/security.c -------------------------------------------------------------------------------- /src/native/windows/src/service.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/native/windows/src/service.c -------------------------------------------------------------------------------- /src/native/windows/src/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/native/windows/src/utils.c -------------------------------------------------------------------------------- /src/native/windows/xdocs/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/native/windows/xdocs/index.xml -------------------------------------------------------------------------------- /src/samples/AloneDaemon.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/samples/AloneDaemon.sh -------------------------------------------------------------------------------- /src/samples/AloneService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/samples/AloneService.java -------------------------------------------------------------------------------- /src/samples/Native.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/samples/Native.c -------------------------------------------------------------------------------- /src/samples/Native.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/samples/Native.sh -------------------------------------------------------------------------------- /src/samples/ProcrunService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/samples/ProcrunService.java -------------------------------------------------------------------------------- /src/samples/ProcrunServiceInstall.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/samples/ProcrunServiceInstall.cmd -------------------------------------------------------------------------------- /src/samples/ProcrunServiceRemove.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/samples/ProcrunServiceRemove.cmd -------------------------------------------------------------------------------- /src/samples/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/samples/README.txt -------------------------------------------------------------------------------- /src/samples/ServiceDaemon.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/samples/ServiceDaemon.java -------------------------------------------------------------------------------- /src/samples/ServiceDaemon.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/samples/ServiceDaemon.sh -------------------------------------------------------------------------------- /src/samples/ServiceDaemonReadThread.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/samples/ServiceDaemonReadThread.java -------------------------------------------------------------------------------- /src/samples/SimpleApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/samples/SimpleApplication.java -------------------------------------------------------------------------------- /src/samples/SimpleApplication.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/samples/SimpleApplication.sh -------------------------------------------------------------------------------- /src/samples/SimpleDaemon.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/samples/SimpleDaemon.java -------------------------------------------------------------------------------- /src/samples/SimpleDaemon.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/samples/SimpleDaemon.sh -------------------------------------------------------------------------------- /src/samples/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/samples/build.xml -------------------------------------------------------------------------------- /src/site/resources/download_daemon.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/site/resources/download_daemon.cgi -------------------------------------------------------------------------------- /src/site/resources/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/site/resources/images/logo.png -------------------------------------------------------------------------------- /src/site/resources/profile.jacoco: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/site/resources/profile.jacoco -------------------------------------------------------------------------------- /src/site/resources/profile.japicmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/site/resources/profile.japicmp -------------------------------------------------------------------------------- /src/site/site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/site/site.xml -------------------------------------------------------------------------------- /src/site/xdoc/binaries.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/site/xdoc/binaries.xml -------------------------------------------------------------------------------- /src/site/xdoc/download_daemon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/site/xdoc/download_daemon.xml -------------------------------------------------------------------------------- /src/site/xdoc/faq.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/site/xdoc/faq.xml -------------------------------------------------------------------------------- /src/site/xdoc/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/site/xdoc/index.xml -------------------------------------------------------------------------------- /src/site/xdoc/issue-tracking.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/site/xdoc/issue-tracking.xml -------------------------------------------------------------------------------- /src/site/xdoc/jsvc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/site/xdoc/jsvc.xml -------------------------------------------------------------------------------- /src/site/xdoc/mail-lists.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/site/xdoc/mail-lists.xml -------------------------------------------------------------------------------- /src/site/xdoc/procrun.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/site/xdoc/procrun.xml -------------------------------------------------------------------------------- /src/site/xdoc/security.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/site/xdoc/security.xml -------------------------------------------------------------------------------- /src/test/java/org/apache/commons/daemon/DaemonInitExceptionTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/test/java/org/apache/commons/daemon/DaemonInitExceptionTest.java -------------------------------------------------------------------------------- /src/test/java/org/apache/commons/daemon/ProcrunDaemon.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/test/java/org/apache/commons/daemon/ProcrunDaemon.java -------------------------------------------------------------------------------- /src/test/java/org/apache/commons/daemon/SimpleDaemon.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-daemon/HEAD/src/test/java/org/apache/commons/daemon/SimpleDaemon.java --------------------------------------------------------------------------------