Skip to content

Commit

Permalink
2009-04-09 Bill Holmes <billholmes54@gmail.com>
Browse files Browse the repository at this point in the history
	* finalizer-abort.cs, finalizer-exception.cs, finalizer-exit.cs :
	  Adding a sleep to the waiting thread to give Mono on Windows an
	  opportunity to interrupt the thread via QueueUserAPC.

	Contributed under MIT/X11 license.


svn path=/trunk/mono/; revision=131423
  • Loading branch information
Bill Holmes committed Apr 9, 2009
1 parent 862fb70 commit 19ebb84
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 0 deletions.
8 changes: 8 additions & 0 deletions mono/tests/ChangeLog
@@ -1,3 +1,11 @@
2009-04-09 Bill Holmes <billholmes54@gmail.com>

* finalizer-abort.cs, finalizer-exception.cs, finalizer-exit.cs :
Adding a sleep to the waiting thread to give Mono on Windows an
opportunity to interrupt the thread via QueueUserAPC.

Contributed under MIT/X11 license.

2009-03-31 Mark Probst <mark.probst@gmail.com>

* critical-finalizers.cs: Test case for critical finalizers.
Expand Down
1 change: 1 addition & 0 deletions mono/tests/finalizer-abort.cs
Expand Up @@ -36,6 +36,7 @@ public class foo {
while(true) {
foo instance = new foo();
list.Add (new WeakReference(instance));
Thread.Sleep (0);
}
return 1;
}
Expand Down
1 change: 1 addition & 0 deletions mono/tests/finalizer-exception.cs
Expand Up @@ -31,6 +31,7 @@ public class foo {
while(true) {
foo instance = new foo();
list.Add (new WeakReference(instance));
Thread.Sleep (0);
}
return 1;
}
Expand Down
1 change: 1 addition & 0 deletions mono/tests/finalizer-exit.cs
Expand Up @@ -23,6 +23,7 @@ public class foo {
while(true) {
foo instance = new foo();
list.Add (new WeakReference(instance));
Thread.Sleep (0);
}
return 1;
}
Expand Down

0 comments on commit 19ebb84

Please sign in to comment.