Changeset 92758 in vbox for trunk/src/VBox
- Timestamp:
- Dec 6, 2021 10:17:38 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/posix/process-creation-posix.cpp
r92755 r92758 90 90 #endif 91 91 #ifdef IPRT_USE_PAM 92 # ifdef RT_OS_DARWIN93 # include <mach-o/dyld.h>94 # endif95 92 # include <security/pam_appl.h> 96 93 # include <stdlib.h> … … 127 124 #include <iprt/err.h> 128 125 #include <iprt/file.h> 129 #if def IPRT_WITH_DYNAMIC_CRYPT_R126 #if defined(IPRT_WITH_DYNAMIC_CRYPT_R) || defined(IPRT_USE_PAM) 130 127 # include <iprt/ldr.h> 131 128 #endif … … 1552 1549 { 1553 1550 int rc; 1554 LogFlow(("RTProcCreateEx: pszExec=%s pszAsUser=%s\n", pszExec, pszAsUser)); 1551 LogFlow(("RTProcCreateEx: pszExec=%s pszAsUser=%s fFlags=%#x phStdIn=%p phStdOut=%p phStdErr=%p\n", 1552 pszExec, pszAsUser, fFlags, phStdIn, phStdOut, phStdErr)); 1555 1553 1556 1554 /* … … 1613 1611 if (aStdFds[i] == i) 1614 1612 aStdFds[i] = -1; 1613 LogFlowFunc(("aStdFds={%d, %d, %d}\n", aStdFds[0], aStdFds[1], aStdFds[2])); 1615 1614 1616 1615 for (int i = 0; i < 3; i++)
Note:
See TracChangeset
for help on using the changeset viewer.