Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIlya Kharmatsky <ilya@mono-cvs.ximian.com>2007-01-28 20:16:39 +0300
committerIlya Kharmatsky <ilya@mono-cvs.ximian.com>2007-01-28 20:16:39 +0300
commit77147055a3a8e7c9218279eb32031fae8eb7df2a (patch)
tree32efccbf467130826990f30de46853d552f76f23 /mcs/class/System/System.Diagnostics/TraceEventCache.jvm.cs
parent098d7508d8233b1afc937cc646fcfe5d6c749841 (diff)
Fixing the problems with compilation under JVM configuration (in Grasshopper),
by adding stubs and missing classes in net_2_0 for configuration. svn path=/trunk/mcs/; revision=71812
Diffstat (limited to 'mcs/class/System/System.Diagnostics/TraceEventCache.jvm.cs')
-rwxr-xr-xmcs/class/System/System.Diagnostics/TraceEventCache.jvm.cs55
1 files changed, 55 insertions, 0 deletions
diff --git a/mcs/class/System/System.Diagnostics/TraceEventCache.jvm.cs b/mcs/class/System/System.Diagnostics/TraceEventCache.jvm.cs
new file mode 100755
index 00000000000..a0f12b5dce7
--- /dev/null
+++ b/mcs/class/System/System.Diagnostics/TraceEventCache.jvm.cs
@@ -0,0 +1,55 @@
+///
+/// Stub class
+///
+
+#if NET_2_0
+
+using System;
+using System.Collections;
+using System.Text;
+using System.Threading;
+
+namespace System.Diagnostics
+{
+ [MonoTODO]
+ public class TraceEventCache
+ {
+ [MonoTODO]
+ public string Callstack
+ {
+ get { throw new NotImplementedException(); }
+ }
+
+ [MonoTODO]
+ public DateTime DateTime
+ {
+ get { throw new NotImplementedException(); }
+ }
+
+ [MonoTODO]
+ public Stack LogicalOperationStack
+ {
+ get { throw new NotImplementedException(); }
+ }
+
+ [MonoTODO]
+ public int ProcessId
+ {
+ get { throw new NotImplementedException(); }
+ }
+
+ [MonoTODO]
+ public string ThreadId
+ {
+ get { throw new NotImplementedException(); }
+ }
+
+ [MonoTODO]
+ public long Timestamp
+ {
+ get { throw new NotImplementedException(); }
+ }
+ }
+}
+
+#endif