MCPcopy Create free account
hub / github.com/apache/arrow / GetPid

Function GetPid

cpp/src/arrow/util/io_util.cc:2117–2123  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2115namespace {
2116
2117int64_t GetPid() {
2118#ifdef _WIN32
2119 return GetCurrentProcessId();
2120#else
2121 return getpid();
2122#endif
2123}
2124
2125std::mt19937_64 GetSeedGenerator() {
2126 // Initialize Mersenne Twister PRNG with a true random seed.

Callers 1

GetSeedGeneratorFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected