Skip to content

Commit 6f46c42

Browse files
committed
HPCC-33568 Introduce a lingering c++ compile
Signed-off-by: Gavin Halliday <[email protected]>
1 parent 122305d commit 6f46c42

File tree

6 files changed

+246
-128
lines changed

6 files changed

+246
-128
lines changed

dali/base/daqueue.hpp

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030
#define THOR_QUEUE_EXT ".thor"
3131
#define THORLINGER_QUEUE_EXT ".lingerthor"
3232
#define ECLCCSERVER_QUEUE_EXT ".eclserver"
33+
#define ECLCCSERVER_COMPILE_QUEUE_EXT ".eclserver.compile"
3334
#define ECLSERVER_QUEUE_EXT ECLCCSERVER_QUEUE_EXT
3435
#define ECLSCHEDULER_QUEUE_EXT ".eclscheduler"
3536
#define ECLAGENT_QUEUE_EXT ".agent"
@@ -48,6 +49,11 @@ inline StringBuffer &getClusterEclCCServerQueueName(StringBuffer &ret, const cha
4849
return ret.append(cluster).append(ECLCCSERVER_QUEUE_EXT);
4950
}
5051

52+
inline StringBuffer &getClusterEclCCServerCompileQueueName(StringBuffer &ret, const char *cluster)
53+
{
54+
return ret.append(cluster).append(ECLCCSERVER_COMPILE_QUEUE_EXT);
55+
}
56+
5157
inline StringBuffer &getClusterEclServerQueueName(StringBuffer &ret, const char *cluster)
5258
{
5359
return ret.append(cluster).append(ECLSERVER_QUEUE_EXT);

0 commit comments

Comments
 (0)