Changeset 95805 in vbox for trunk/src/VBox
- Timestamp:
- Jul 25, 2022 12:37:43 PM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/process.cpp
r93115 r95805 38 38 39 39 #ifdef RT_OS_WINDOWS 40 # include < process.h>40 # include <iprt/win/windows.h> 41 41 #else 42 42 # include <unistd.h> … … 57 57 /* lazy init. */ 58 58 #ifdef _MSC_VER 59 Self = _getpid(); /* crappy ansi compiler*/59 Self = GetCurrentProcessId(); /* since NT 3.1, not 3.51+ as listed on geoffchappell.com */ 60 60 #else 61 61 Self = getpid();
Note:
See TracChangeset
for help on using the changeset viewer.