IXWebSocket/ixwebsocket/windows/IXSetThreadName_windows.cpp

17 lines
361 B
C++
Raw Normal View History

2019-01-05 00:23:57 +01:00
/*
* IXSetThreadName_windows.cpp
* Author: Benjamin Sergeant
* Copyright (c) 2019 Machine Zone, Inc. All rights reserved.
*/
#include "../IXSetThreadName.h"
#include <iostream>
namespace ix
{
void setThreadName(const std::string& name)
{
// FIXME
std::cerr << "setThreadName not implemented on Windows yet" << std::endl;
}
}