From 3f5935a284f0a455868a2b7607fe3658f96b3b5f Mon Sep 17 00:00:00 2001 From: Benjamin Sergeant Date: Fri, 4 Jan 2019 15:23:57 -0800 Subject: [PATCH] windows fixes --- ixwebsocket/windows/IXSetThreadName_windows.cpp | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 ixwebsocket/windows/IXSetThreadName_windows.cpp diff --git a/ixwebsocket/windows/IXSetThreadName_windows.cpp b/ixwebsocket/windows/IXSetThreadName_windows.cpp new file mode 100644 index 00000000..615e7ecd --- /dev/null +++ b/ixwebsocket/windows/IXSetThreadName_windows.cpp @@ -0,0 +1,16 @@ +/* + * IXSetThreadName_windows.cpp + * Author: Benjamin Sergeant + * Copyright (c) 2019 Machine Zone, Inc. All rights reserved. + */ +#include "../IXSetThreadName.h" +#include + +namespace ix +{ + void setThreadName(const std::string& name) + { + // FIXME + std::cerr << "setThreadName not implemented on Windows yet" << std::endl; + } +}