summaryrefslogtreecommitdiffstats
path: root/core/os/safe_binary_mutex.h
diff options
context:
space:
mode:
Diffstat (limited to 'core/os/safe_binary_mutex.h')
-rw-r--r--core/os/safe_binary_mutex.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/core/os/safe_binary_mutex.h b/core/os/safe_binary_mutex.h
index 74a20043a3..980bd38e3b 100644
--- a/core/os/safe_binary_mutex.h
+++ b/core/os/safe_binary_mutex.h
@@ -5,6 +5,8 @@
/* GODOT ENGINE */
/* https://godotengine.org */
/**************************************************************************/
+/* Copyright (c) 2024-present Redot Engine contributors */
+/* (see REDOT_AUTHORS.md) */
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
/* */
@@ -48,7 +50,7 @@
// - Must have recursive semnantics (or simulate, as this one does).
// The implementation keeps the lock count in TS. Therefore, only
// one object of each version of the template can exists; hence the Tag argument.
-// Tags must be unique across the Godot codebase.
+// Tags must be unique across the Redot codebase.
// Also, don't forget to declare the thread_local variable on each use.
template <int Tag>
class SafeBinaryMutex {