Stroika Library 3.0d16
 
Loading...
Searching...
No Matches
Process.inl
1/*
2 * Copyright(c) Sophist Solutions, Inc. 1990-2025. All rights reserved
3 */
4
6
7 /*
8 ********************************************************************************
9 ***************************** GetCurrentProcessID ******************************
10 ********************************************************************************
11 */
12 inline pid_t GetCurrentProcessID ()
13 {
14#if qStroika_Foundation_Common_Platform_Windows
15 return GetCurrentProcessId ();
16#elif qStroika_Foundation_Common_Platform_POSIX
17 return getpid ();
18#else
20#endif
21 }
22
23}
#define AssertNotImplemented()
Definition Assertions.h:401
int pid_t
TODO - maybe move this to configuraiotn module???
Definition Module.h:34