Author: zoltan
Date: 2005-03-04 08:02:01 -0500 (Fri, 04 Mar 2005)
New Revision: 41433

Modified:
   trunk/mcs/class/corlib/System.Diagnostics/ChangeLog
   trunk/mcs/class/corlib/System.Diagnostics/StackFrame.cs
Log:
2005-03-04  Zoltan Varga  <[EMAIL PROTECTED]>

        * StackFrame.cs: Add an internalMethodName field to return info about
        the various runtime wrappers.


Modified: trunk/mcs/class/corlib/System.Diagnostics/ChangeLog
===================================================================
--- trunk/mcs/class/corlib/System.Diagnostics/ChangeLog 2005-03-04 10:48:44 UTC 
(rev 41432)
+++ trunk/mcs/class/corlib/System.Diagnostics/ChangeLog 2005-03-04 13:02:01 UTC 
(rev 41433)
@@ -1,3 +1,8 @@
+2005-03-04  Zoltan Varga  <[EMAIL PROTECTED]>
+
+       * StackFrame.cs: Add an internalMethodName field to return info about
+       the various runtime wrappers.
+
 2005-03-02  Chris Toshok  <[EMAIL PROTECTED]>
 
        * DebuggerTypeProxyAttribute.cs, DebuggerBrowsableState.cs,

Modified: trunk/mcs/class/corlib/System.Diagnostics/StackFrame.cs
===================================================================
--- trunk/mcs/class/corlib/System.Diagnostics/StackFrame.cs     2005-03-04 
10:48:44 UTC (rev 41432)
+++ trunk/mcs/class/corlib/System.Diagnostics/StackFrame.cs     2005-03-04 
13:02:01 UTC (rev 41433)
@@ -80,6 +80,9 @@
                 /// </value>
                 private int columnNumber;
 
+                       // Description of internal runtime method if 
methodBase==null
+                       private string internalMethodName;
+
                [MethodImplAttribute(MethodImplOptions.InternalCall)]
                extern static bool get_frame_info (int skip, bool needFileInfo, 
out MethodBase method,
                                                   out int iloffset, out int 
native_offset,
@@ -271,6 +274,11 @@
                 {
                         return nativeOffset;                        
                 }
+
+                       internal string GetInternalMethodName ()
+                       {
+                               return internalMethodName;
+                       }
                 
                 /// <summary>
                 ///   Builds a readable representation of the stack frame.

_______________________________________________
Mono-patches maillist  -  [email protected]
http://lists.ximian.com/mailman/listinfo/mono-patches

Reply via email to