X-Git-Url: http://git.tdb.fi/?p=libs%2Fcore.git;a=blobdiff_plain;f=source%2Fcore%2Fwindows%2Fthread.cpp;h=ab02c4d04094394e384b91defd717b70ac5918df;hp=410141cfb9e82626f957e6aecf6ee2fbbfc936ad;hb=a4596d1c2f627e4568eb6c01d81b6e45f488715a;hpb=609c9a508cfdc7b42c46c4f21d17639204165a00 diff --git a/source/core/windows/thread.cpp b/source/core/windows/thread.cpp index 410141c..ab02c4d 100644 --- a/source/core/windows/thread.cpp +++ b/source/core/windows/thread.cpp @@ -2,8 +2,6 @@ #include "thread.h" #include "thread_private.h" -using namespace std; - namespace Msp { void Thread::platform_join() @@ -22,4 +20,9 @@ void Thread::platform_launch() priv_->handle = CreateThread(0, 0, &Private::main_wrapper, this, 0, &dummy); } +void Thread::platform_setname() +{ + // TODO: https://msdn.microsoft.com/en-us/library/xcb2z8hs.aspx +} + } // namespace Msp