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; + } +}