Merge pull request #1972 from esdrubal/proc_pidpath
[mono.git] / mcs / class / corlib / System.Threading / Monitor.cs
index 8b2d4dca9cd879ebbd871290c2a9024cbc8bb733..c5cda6920d2edc3729e325bd3228629350ef94ae 100644 (file)
@@ -189,13 +189,17 @@ namespace System.Threading
                        }
                }
 
-#if NET_4_0
                [MethodImplAttribute(MethodImplOptions.InternalCall)]
                extern static void try_enter_with_atomic_var (object obj, int millisecondsTimeout, ref bool lockTaken);
 
+               [MethodImplAttribute(MethodImplOptions.InternalCall)]
+               extern static void enter_with_atomic_var (object obj, ref bool lockTaken);
+
+               // Can't make this an icall since it has the same name as the other Enter method
+               [MethodImpl(MethodImplOptions.AggressiveInlining)]
                public static void Enter (object obj, ref bool lockTaken)
                {
-                       TryEnter (obj, Timeout.Infinite, ref lockTaken);
+                       enter_with_atomic_var (obj, ref lockTaken);
                }
 
                public static void TryEnter (object obj, ref bool lockTaken)
@@ -224,16 +228,11 @@ namespace System.Threading
                        try_enter_with_atomic_var (obj, millisecondsTimeout, ref lockTaken);
                }               
 
-#endif
 
                [MethodImplAttribute(MethodImplOptions.InternalCall)]
                extern static bool Monitor_test_owner (object obj);
 
-#if NET_4_5            
                public
-#else
-               internal
-#endif
                static bool IsEntered (object obj)
                {
                        return Monitor_test_owner(obj);