diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2023-10-03 13:07:21 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2023-10-03 13:07:21 -0400 |
commit | a96ddeb7dc528d29d05f52a9b8857b2f8924fddc (patch) | |
tree | e2a9f86399f4b5da48a27e94d8b10812e63569f7 /src/thread.h | |
parent | 9b1ee97d13985f42b09f02c8a25459a910004eb5 (diff) | |
download | bfs-a96ddeb7dc528d29d05f52a9b8857b2f8924fddc.tar.xz |
thread: s/call_once/invoke_once/
call_once() is a reserved identifier from C11.
Diffstat (limited to 'src/thread.h')
-rw-r--r-- | src/thread.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/thread.h b/src/thread.h index b2edf17..45b5e1f 100644 --- a/src/thread.h +++ b/src/thread.h @@ -97,7 +97,7 @@ /** * Wrapper for pthread_once(). */ -#define call_once(once, fn) \ +#define invoke_once(once, fn) \ thread_verify(pthread_once(once, fn), errno == 0) #endif // BFS_THREAD_H |