blob: ce52a876aca1c78492ad8d3a8da52617c0320c70 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#include "stockpile.h"
namespace NYT {
////////////////////////////////////////////////////////////////////////////////
void RunStockpileThread(TStockpileOptions /*options*/, std::atomic<bool>* /*shouldProceed*/)
{ }
void RunDetachedStockpileThreads(TStockpileOptions /*options*/)
{ }
////////////////////////////////////////////////////////////////////////////////
} // namespace NYT
|