summaryrefslogtreecommitdiff
path: root/Documentation
diff options
context:
space:
mode:
authorFelipe Pessoto <felipepessoto@hotmail.com>2016-03-01 21:17:37 -0300
committerFelipe Pessoto <felipepessoto@hotmail.com>2016-03-01 21:17:37 -0300
commit47a031987f97e8b703beb57b6c6780da0adea0b9 (patch)
tree45dcbd6135967916aff2ad4cc9184140e7b4b3d0 /Documentation
parent526d355acc407ab59348ae97d5ade4b48ddad307 (diff)
downloadcoreclr-47a031987f97e8b703beb57b6c6780da0adea0b9.tar.gz
coreclr-47a031987f97e8b703beb57b6c6780da0adea0b9.tar.bz2
coreclr-47a031987f97e8b703beb57b6c6780da0adea0b9.zip
Anchor Tag fix
Diffstat (limited to 'Documentation')
-rw-r--r--Documentation/botr/threading.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/botr/threading.md b/Documentation/botr/threading.md
index 4eb8e34889..2e13d52df3 100644
--- a/Documentation/botr/threading.md
+++ b/Documentation/botr/threading.md
@@ -173,7 +173,7 @@ The [Rules of the Code](../coding-guidelines/clr-code-guide.md) document describ
Crst
----
-Just as Monitor is the preferred locking mechanism for managed code, Crst is the preferred mechanism for VM code. Like Monitor, Crst is a hybrid lock that is aware of hosts and GC modes. Crst also implements deadlock avoidance via "lock leveling," described in the [Crst Leveling chapter of the BotR](../coding-guidelines/clr-code-guide.md#entering-and-leaving-crsts).
+Just as Monitor is the preferred locking mechanism for managed code, Crst is the preferred mechanism for VM code. Like Monitor, Crst is a hybrid lock that is aware of hosts and GC modes. Crst also implements deadlock avoidance via "lock leveling," described in the [Crst Leveling chapter of the BotR](../coding-guidelines/clr-code-guide.md#264-entering-and-leaving-crsts).
It is generally illegal to acquire a Crst while in cooperative mode, though exceptions are made where absolutely necessary.