MCPcopy Create free account
hub / github.com/apache/mesos / getForkedPidPath

Function getForkedPidPath

src/slave/paths.cpp:401–417  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

399
400
401string getForkedPidPath(
402 const string& rootDir,
403 const SlaveID& slaveId,
404 const FrameworkID& frameworkId,
405 const ExecutorID& executorId,
406 const ContainerID& containerId)
407{
408 return path::join(
409 getExecutorRunPath(
410 rootDir,
411 slaveId,
412 frameworkId,
413 executorId,
414 containerId),
415 "pids",
416 FORKED_PID_FILE);
417}
418
419
420Try<list<string>> getTaskPaths(

Callers 5

TYPED_TESTFunction · 0.85
TEST_FFunction · 0.85
TEST_PFunction · 0.85
recoverMethod · 0.85
launchExecutorMethod · 0.85

Calls 2

getExecutorRunPathFunction · 0.85
joinFunction · 0.50

Tested by 3

TYPED_TESTFunction · 0.68
TEST_FFunction · 0.68
TEST_PFunction · 0.68