aboutsummaryrefslogtreecommitdiffstats
path: root/thread.c
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2019-09-23 02:20:43 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2019-09-23 02:21:54 +0900
commit142efba93e91209a7f336863974d4c84a969e2a3 (patch)
treedf33aa12d6d752c6326334386802d3188c1373ca /thread.c
parentcadfaacb2533d47d52dbb5dbefe724d7bf11112e (diff)
downloadruby-142efba93e91209a7f336863974d4c84a969e2a3.tar.gz
Adjusted directives order of a function [ci skip]
Diffstat (limited to 'thread.c')
-rw-r--r--thread.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/thread.c b/thread.c
index 91f07e8a84..09f413557f 100644
--- a/thread.c
+++ b/thread.c
@@ -106,7 +106,9 @@ enum SLEEP_FLAGS {
#define THREAD_LOCAL_STORAGE_INITIALISED FL_USER13
#define THREAD_LOCAL_STORAGE_INITIALISED_P(th) RB_FL_TEST_RAW((th), THREAD_LOCAL_STORAGE_INITIALISED)
-static VALUE inline rb_thread_local_storage(VALUE thread) {
+static inline VALUE
+rb_thread_local_storage(VALUE thread)
+{
if (LIKELY(!THREAD_LOCAL_STORAGE_INITIALISED_P(thread))) {
rb_ivar_set(thread, idLocals, rb_hash_new());
RB_FL_SET_RAW(thread, THREAD_LOCAL_STORAGE_INITIALISED);