~ubuntu-branches/ubuntu/oneiric/monodevelop/oneiric

« back to all changes in this revision

Viewing changes to contrib/Mono.Debugger.Soft/Mono.Debugger.Soft/EventType.cs

  • Committer: Bazaar Package Importer
  • Author(s): Jo Shields
  • Date: 2011-06-27 17:03:13 UTC
  • mto: (1.8.1 upstream)
  • mto: This revision was merged to the branch mainline in revision 54.
  • Revision ID: james.westby@ubuntu.com-20110627170313-6cvz3s19x6e9hqe9
ImportĀ upstreamĀ versionĀ 2.5.92+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
namespace Mono.Debugger.Soft
 
3
{
 
4
        // Keep it in sync with debugger-agent.h
 
5
        public enum EventType {
 
6
                VMStart = 0,
 
7
                VMDeath = 1,
 
8
                ThreadStart = 2,
 
9
                ThreadDeath = 3,
 
10
                AppDomainCreate = 4,
 
11
                AppDomainUnload = 5,
 
12
                MethodEntry = 6,
 
13
                MethodExit = 7,
 
14
                AssemblyLoad = 8,
 
15
                AssemblyUnload = 9,
 
16
                Breakpoint = 10,
 
17
                Step = 11,
 
18
                TypeLoad = 12,
 
19
                Exception = 13,
 
20
                // Not part of the wire protocol
 
21
                VMDisconnect = 99
 
22
        }
 
23
}
 
 
b'\\ No newline at end of file'