From c4529acb3d1216b339d5d4fe734365a018869850 Mon Sep 17 00:00:00 2001 From: Josef Reidinger Date: Thu, 21 Nov 2024 21:56:01 +0100 Subject: [PATCH] add note about article with rust thread unsafety --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index b08b949..92f356a 100644 --- a/README.md +++ b/README.md @@ -20,3 +20,4 @@ Repository contains three directories: - https://doc.rust-lang.org/nomicon/ffi.html - https://adventures.michaelfbryan.com/posts/rust-closures-in-ffi/ - https://www.khoury.northeastern.edu/home/lth/larceny/notes/note7-ffi.html +- https://cliffle.com/blog/not-thread-safe/ ( interesting part how to ensure in rust that some data is not thread safe )