From ff045bccf557c340cc145ad2b2cdb4b0d951d78a Mon Sep 17 00:00:00 2001 From: Timur Gafarov Date: Sun, 11 Feb 2024 19:51:20 +0300 Subject: [PATCH] Remove notes --- dlib/core/thread.d | 6 ------ 1 file changed, 6 deletions(-) diff --git a/dlib/core/thread.d b/dlib/core/thread.d index c0f4b754..82c7b280 100755 --- a/dlib/core/thread.d +++ b/dlib/core/thread.d @@ -35,12 +35,6 @@ DEALINGS IN THE SOFTWARE. * is greatly inspired by core.thread from Phobos, but dlib.core.thread * is fully GC-free and can be used with dlib.core.memory allocators. * - * Implementation notes: - * - No TLS support, sorry. Any global variables should be marked with - * __gshared for correct access from threads. - * - Internals of Thread class are platform-dependent, so be aware of that - * when inheriting. - * * Copyright: Timur Gafarov 2015-2023. * License: $(LINK2 https://boost.org/LICENSE_1_0.txt, Boost License 1.0). * Authors: Timur Gafarov