1/*
2 * IXSetThreadName.h
3 * Author: Benjamin Sergeant
4 * Copyright (c) 2018 Machine Zone, Inc. All rights reserved.
5 */
6#pragma once
7#include <string>
8
9namespace ix
10{
11 void setThreadName(const std::string& name);
12}
13