[Mono-bugs] [Bug 56614][Nor] New - Some [ThreadStatic] fields aren't declared static in AppDomain

bugzilla-daemon@bugzilla.ximian.com bugzilla-daemon@bugzilla.ximian.com
Wed, 7 Apr 2004 07:58:23 -0400 (EDT)


Please do not reply to this email- if you want to comment on the bug, go to the
URL shown below and enter your comments there.

Changed by sebastien@ximian.com.

http://bugzilla.ximian.com/show_bug.cgi?id=56614

--- shadow/56614	2004-04-07 07:58:23.000000000 -0400
+++ shadow/56614.tmp.26236	2004-04-07 07:58:23.000000000 -0400
@@ -0,0 +1,33 @@
+Bug#: 56614
+Product: Mono: Class Libraries
+Version: unspecified
+OS: All
+OS Details: 
+Status: NEW   
+Resolution: 
+Severity: 
+Priority: Normal
+Component: CORLIB
+AssignedTo: mono-bugs@ximian.com                            
+ReportedBy: sebastien@ximian.com               
+QAContact: mono-bugs@ximian.com
+TargetMilestone: ---
+URL: 
+Cc: 
+Summary: Some [ThreadStatic] fields aren't declared static in AppDomain
+
+Description of Problem:
+
+It seems to me that the fields should be static (at least when reading the
+MS specs on ThreadStatic). I had to change one of my fields (to static)
+because it wouldn't work as expected (_principal). 
+
+But I'm not sure about the two other existing fields...
+
+[ThreadStatic]
+Hashtable type_resolve_in_progress;
+
+[ThreadStatic]
+Hashtable assembly_resolve_in_progress;
+
+Note: All other [ThreadStatic] fields in /mcs/* are declared static.