소스 검색

* CompressedStack.cs: Added finalizer to match public API of
MS.NET

svn path=/trunk/mcs/; revision=29082

Gert Driesen 21 년 전
부모
커밋
8a112edb56
2개의 변경된 파일9개의 추가작업 그리고 0개의 파일을 삭제
  1. 5 0
      mcs/class/corlib/System.Threading/ChangeLog
  2. 4 0
      mcs/class/corlib/System.Threading/CompressedStack.cs

+ 5 - 0
mcs/class/corlib/System.Threading/ChangeLog

@@ -1,3 +1,8 @@
+2004-06-09  Gert Driesen <[email protected]>
+
+	* CompressedStack.cs: Added finalizer to match public API of
+	MS.NET
+
 2004-05-19  Lluis Sanchez Gual <[email protected]>
 
 	* Thread.cs: Some fixes in Abort. Implemented Suspend and Resume.

+ 4 - 0
mcs/class/corlib/System.Threading/CompressedStack.cs

@@ -14,5 +14,9 @@ namespace System.Threading
 		internal CompressedStack ()
 		{
 		}
+
+		~CompressedStack ()
+		{
+		}
 	}
 }