[corlib] Improve CancellationTokenSource test
[mono.git] / mcs / tools / mono-service / ChangeLog
1 2008-02-08  Jonathan Pryor  <pryorj@novell.com>
2
3         * mono-service.cs: The return value of UnixSignal.WaitAny() changed; cope.
4
5 2008-02-07  Jonathan Pryor  <pryorj@novell.com>
6
7         * mono-service.cs: Use Mono.Unix.UnixSignal for signal handling, which 
8           is actually safe.  As a bonus, it removes the 'wakeup every .5s' code.
9
10 2006-08-30  Robert Jordan  <robertj@gmx.net>
11
12         * Makefile: Support the 2.0 profile.
13         * Makefile: Install the program into the GAC.
14         * AssemblyInfo.cs: Create, configure.
15         * mono-service.exe.sources: Add AssemblyInfo.cs.
16         Fixes #79207.
17         
18 2006-07-30  Miguel de Icaza  <miguel@novell.com>
19
20         * mono-service.cs: Create/open the lockfile exclusively to avoid
21         attacks.  Fixes #77340.
22
23 2006-06-07  Kornél Pál  <kornelpal@gmail.com>
24
25         * mono-service.cs: Run service using AppDomain.ExecuteAssembly ()
26           to ensure EntryPoint signature compatibility with the runtime.
27
28 2005-12-27  Jonathan Pryor  <jonpryor@vt.edu>
29
30         * mono-service.cs: Use non-obsolete Mono.Posix.dll types.
31
32 2005-06-16  Joerg Rosenkranz  <joergr@voelcker.com>
33
34         * mono-service.cs: Remove lock file when service is
35         terminated.
36         
37 2005-06-10  Joerg Rosenkranz  <joergr@voelcker.com>
38
39         * mono-service.cs: Removed AutoResetEvent code from signal
40         handler because it was unsafe and not guaranteed to work. 
41         Use polling in main loop instead.
42         Use signal functions from Mono.Unix instead of self defined ones.
43         
44 2005-06-01  Raja R Harinath  <rharinath@novell.com>
45
46         * mono-service.cs (MonoServiceRunner.Main): Replace LockFlags with
47         LockfCommand to reflect the rename in Mono.Posix.dll.
48
49 2005-04-12  Joerg Rosenkranz  <joergr@voelcker.com>
50
51         * mono-service.cs: Service runs in its own AppDomain now.
52         Improved exception handling.
53
54 2005-04-09  Joerg Rosenkranz  <joergr@voelcker.com>
55
56         * mono-service.cs: Fixed dynamic loading of assemblies
57         from services. Cleaned up callback code.
58         
59 2005-04-08  Joerg Rosenkranz  <joergr@voelcker.com>
60
61         * mono-service.cs: Restructured code to run service main loop
62         in callback called by ServiceBase.Run. This matches Windows 
63         service behaviour better.
64
65 2005-04-07  Zoltan Varga  <vargaz@freemail.hu>
66
67         * mono-service.cs: Fix compilation with csc.
68
69 2005-04-06  Joerg Rosenkranz  <joergr@voelcker.com>
70
71         * mono-service.cs: 
72             Pay attention to CanStop and CanPauseAndContinue. 
73             Call Dispose of service. Fixed exe name in usage output.
74             Filling and using lock file to prevent multiple instances.