| 223 | IRootEnvironment* RunMaster(int masterPort, int workerThreadCount, const char* hostsFileName, int defaultSlavePort, int debugPort); |
| 224 | |
| 225 | inline IRootEnvironment* RunMaster(int workerThreadCount, const char* hostsFileName, int defaultSlavePort) { |
| 226 | const int DEBUG_PORT = 13013; |
| 227 | const int AUTO_MASTER_PORT = 0; |
| 228 | return RunMaster(AUTO_MASTER_PORT, workerThreadCount, hostsFileName, defaultSlavePort, DEBUG_PORT); |
| 229 | } |
| 230 | inline IRootEnvironment* RunMaster(int workerThreadCount, const char* hostsFileName, int defaultSlavePort, int debugPort) { |
| 231 | const int AUTO_MASTER_PORT = 0; |
| 232 | return RunMaster(AUTO_MASTER_PORT, workerThreadCount, hostsFileName, defaultSlavePort, debugPort); |