ClickHouse/libs/libpocoext/include/Poco/Ext/ThreadNumber.h
2017-04-01 11:35:09 +03:00

15 lines
331 B
C++
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#pragma once
/** Последовательный номер потока, начиная с 1, среди тех потоков, для которых был получен этот номер.
* Используется при логгировании.
*/
namespace Poco
{
namespace ThreadNumber
{
unsigned get();
}
}