2008-02-08 Jonathan Pryor * mono-service.cs: The return value of UnixSignal.WaitAny() changed; cope. 2008-02-07 Jonathan Pryor * mono-service.cs: Use Mono.Unix.UnixSignal for signal handling, which is actually safe. As a bonus, it removes the 'wakeup every .5s' code. 2006-08-30 Robert Jordan * Makefile: Support the 2.0 profile. * Makefile: Install the program into the GAC. * AssemblyInfo.cs: Create, configure. * mono-service.exe.sources: Add AssemblyInfo.cs. Fixes #79207. 2006-07-30 Miguel de Icaza * mono-service.cs: Create/open the lockfile exclusively to avoid attacks. Fixes #77340. 2006-06-07 Kornél Pál * mono-service.cs: Run service using AppDomain.ExecuteAssembly () to ensure EntryPoint signature compatibility with the runtime. 2005-12-27 Jonathan Pryor * mono-service.cs: Use non-obsolete Mono.Posix.dll types. 2005-06-16 Joerg Rosenkranz * mono-service.cs: Remove lock file when service is terminated. 2005-06-10 Joerg Rosenkranz * mono-service.cs: Removed AutoResetEvent code from signal handler because it was unsafe and not guaranteed to work. Use polling in main loop instead. Use signal functions from Mono.Unix instead of self defined ones. 2005-06-01 Raja R Harinath * mono-service.cs (MonoServiceRunner.Main): Replace LockFlags with LockfCommand to reflect the rename in Mono.Posix.dll. 2005-04-12 Joerg Rosenkranz * mono-service.cs: Service runs in its own AppDomain now. Improved exception handling. 2005-04-09 Joerg Rosenkranz * mono-service.cs: Fixed dynamic loading of assemblies from services. Cleaned up callback code. 2005-04-08 Joerg Rosenkranz * mono-service.cs: Restructured code to run service main loop in callback called by ServiceBase.Run. This matches Windows service behaviour better. 2005-04-07 Zoltan Varga * mono-service.cs: Fix compilation with csc. 2005-04-06 Joerg Rosenkranz * mono-service.cs: Pay attention to CanStop and CanPauseAndContinue. Call Dispose of service. Fixed exe name in usage output. Filling and using lock file to prevent multiple instances.