MCPcopy Create free account
hub / github.com/deskflow/deskflow / processStateToString

Method processStateToString

src/lib/platform/MSWindowsWatchdog.cpp:440–458  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

438}
439
440std::string MSWindowsWatchdog::processStateToString(MSWindowsWatchdog::ProcessState state)
441{
442 switch (state) {
443 using enum MSWindowsWatchdog::ProcessState;
444
445 case Idle:
446 return "Idle";
447 case StartScheduled:
448 return "StartScheduled";
449 case StartPending:
450 return "StartPending";
451 case StopPending:
452 return "StopPending";
453 case Running:
454 return "Running";
455 }
456
457 return "Unknown";
458}
459
460void MSWindowsWatchdog::initOutputReadPipe()
461{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected