MCPcopy Create free account
hub / github.com/crownengine/crown / is_open

Function is_open

src/core/process.cpp:39–46  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

37namespace process_internal
38{
39 bool is_open(Private *priv)
40 {
41#if CROWN_PLATFORM_WINDOWS
42 return priv->process.hProcess != 0;
43#else
44 return priv->pid != -1;
45#endif
46 }
47
48} // namespace process_internal
49

Callers 15

~ProcessMethod · 0.85
spawnMethod · 0.85
force_exitMethod · 0.85
waitMethod · 0.85
readMethod · 0.85
closeMethod · 0.85
read_allMethod · 0.85
sizeMethod · 0.85
positionMethod · 0.85
end_of_fileMethod · 0.85
seekMethod · 0.85
seek_to_endMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected