From cdf17b761394ecb9a25e4ae23daf8806859cc536 Mon Sep 17 00:00:00 2001 From: The Bearodactyl <114454115+TheBearodactyl@users.noreply.github.com> Date: Mon, 15 Jan 2024 21:43:01 -0600 Subject: [PATCH] Deadlocked by F-777 --- src/what-unsafe-does.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/what-unsafe-does.md b/src/what-unsafe-does.md index 67fbe8a..067a65c 100644 --- a/src/what-unsafe-does.md +++ b/src/what-unsafe-does.md @@ -68,7 +68,7 @@ Vec and Box make use of intrinsics that require their pointers to be non-null at Rust is otherwise quite permissive with respect to other dubious operations. Rust considers it "safe" to: -* Deadlock +* [Deadlock][Deadlocked] * Have a [race condition][race] * Leak memory * Overflow integers (with the built-in operators such as `+` etc.) @@ -84,3 +84,4 @@ these problems are considered impractical to categorically prevent. [race]: races.html [target features]: ../reference/attributes/codegen.html#the-target_feature-attribute [`NonNull`]: ../std/ptr/struct.NonNull.html +[Deadlocked]: https://geometry-dash.fandom.com/wiki/Deadlocked