diff --git a/common/Thread.hpp b/common/Thread.hpp index 3b47b25..1a6f679 100644 --- a/common/Thread.hpp +++ b/common/Thread.hpp @@ -1,6 +1,6 @@ #ifndef COMMON_THREAD_HPP #define COMMON_THREAD_HPP -#include "common/thread/Tls.hpp" +#include "common/thread/OsTls.hpp" #endif diff --git a/common/thread/Tls.cpp b/common/thread/OsTls.cpp similarity index 98% rename from common/thread/Tls.cpp rename to common/thread/OsTls.cpp index fe96d4f..d15e7bf 100644 --- a/common/thread/Tls.cpp +++ b/common/thread/OsTls.cpp @@ -1,4 +1,4 @@ -#include "common/thread/Tls.hpp" +#include "common/thread/OsTls.hpp" #include #if defined(WHOA_SYSTEM_WIN) diff --git a/common/thread/Tls.hpp b/common/thread/OsTls.hpp similarity index 69% rename from common/thread/Tls.hpp rename to common/thread/OsTls.hpp index b901fc1..d997127 100644 --- a/common/thread/Tls.hpp +++ b/common/thread/OsTls.hpp @@ -1,5 +1,5 @@ -#ifndef COMMON_THREAD_TLS_HPP -#define COMMON_THREAD_TLS_HPP +#ifndef COMMON_THREAD_OS_TLS_HPP +#define COMMON_THREAD_OS_TLS_HPP #include