[Mono-list] I'm Confused... when is a class really 'Completed'?
Burton M. Strauss III
Burton@ntopsupport.com
Wed, 7 May 2003 14:23:13 -0500
The http://www.go-mono.com/class-status-System.html page indicates that
System.Threading: is 100% complete.
However, when attempting to run that code, I get a warning message
WARNING: Thread.Suspend () partially implemented
Looking on the web, this
http://lists.ximian.com/archives/public/mono-patches/2003-February/013712.ht
ml, shows the patch to output the warning:
@@ -425,6 +425,7 @@
set_state(ThreadState.SuspendRequested);
// FIXME - somehow let the interpreter know that
// this thread should now suspend
+ Console.WriteLine ("WARNING: Thread.Suspend () partially implemented");
}
// Closes the system thread handle
But now I'm confused.
1. What does 100% Completed really mean
2. How can I find out what parts of 'the mono system' are really functional
enough to use?
TIA!
-----Burton