From 6adee255ffaa6fa0585f46d6d21ead166d342109 Mon Sep 17 00:00:00 2001 From: fallenoak Date: Fri, 30 Dec 2022 08:41:23 -0600 Subject: [PATCH] chore(thread): improve names --- common/Thread.hpp | 2 +- common/thread/{Tls.cpp => OsTls.cpp} | 2 +- common/thread/{Tls.hpp => OsTls.hpp} | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) rename common/thread/{Tls.cpp => OsTls.cpp} (98%) rename common/thread/{Tls.hpp => OsTls.hpp} (69%) 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