dotgnu-pnet-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Dotgnu-pnet-commits] CVS: pnetlib/runtime/System/Threading Thread.cs,1


From: Rhys Weatherley <address@hidden>
Subject: [Dotgnu-pnet-commits] CVS: pnetlib/runtime/System/Threading Thread.cs,1.7,1.8
Date: Mon, 31 Mar 2003 21:45:53 -0500

Update of /cvsroot/dotgnu-pnet/pnetlib/runtime/System/Threading
In directory subversions:/tmp/cvs-serv979/runtime/System/Threading

Modified Files:
        Thread.cs 
Log Message:


Implement missing ECMA TODO's in "System.Threading.Thread".


Index: Thread.cs
===================================================================
RCS file: /cvsroot/dotgnu-pnet/pnetlib/runtime/System/Threading/Thread.cs,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -r1.7 -r1.8
*** Thread.cs   20 Dec 2001 10:11:39 -0000      1.7
--- Thread.cs   1 Apr 2003 02:45:48 -0000       1.8
***************
*** 77,86 ****
                        }
  
!       // Get the application domain of the currently execution thread.
!       [TODO]
        public static AppDomain GetDomain()
                        {
!                               // TODO
!                               return null;
                        }
  
--- 77,84 ----
                        }
  
!       // Get the application domain of the currently executing thread.
        public static AppDomain GetDomain()
                        {
!                               return AppDomain.CurrentDomain;
                        }
  
***************
*** 312,319 ****
  
        // Get the packed stack trace information for this thread.
-       [TODO]
        internal PackedStackFrame[] GetPackedStackTrace()
                        {
!                               // TODO
                                return null;
                        }
--- 310,317 ----
  
        // Get the packed stack trace information for this thread.
        internal PackedStackFrame[] GetPackedStackTrace()
                        {
!                               // We don't currently support getting the stack 
trace
!                               // for a foreign thread.  It is too risky 
security-wise.
                                return null;
                        }





reply via email to

[Prev in Thread] Current Thread [Next in Thread]