summaryrefslogtreecommitdiff
path: root/src/basic/refcnt.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/basic/refcnt.h')
-rw-r--r--src/basic/refcnt.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/basic/refcnt.h b/src/basic/refcnt.h
index 0502c20a2e..1d77a6445a 100644
--- a/src/basic/refcnt.h
+++ b/src/basic/refcnt.h
@@ -1,5 +1,3 @@
-/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
-
#pragma once
/***
@@ -21,7 +19,9 @@
along with systemd; If not, see <http://www.gnu.org/licenses/>.
***/
-/* A type-safe atomic refcounter */
+/* A type-safe atomic refcounter.
+ *
+ * DO NOT USE THIS UNLESS YOU ACTUALLY CARE ABOUT THREAD SAFETY! */
typedef struct {
volatile unsigned _value;