ClickHouse/libs/libpocoext/include/Poco/Ext/ThreadNumber.h
2011-01-11 18:24:15 +00:00

18 lines
371 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.

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