Changeset 92617 in vbox for trunk/include/iprt
- Timestamp:
- Nov 29, 2021 1:04:10 AM (3 years ago)
- svn:sync-xref-src-repo-rev:
- 148509
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/process.h
r83661 r92617 206 206 #define RTPROC_FLAGS_SAME_CONTRACT RT_BIT(3) 207 207 /** Load user profile data when executing a process. 208 * This redefines the meaning of RTENV_DEFAULT to the profile environment. 209 * @remarks On non-windows platforms, the resulting environment maybe very 210 * different from what you see in your shell. Among other reasons, 211 * we cannot run shell profile scripts which typically sets up the 212 * environment. */ 208 * This redefines the meaning of RTENV_DEFAULT to the profile environment. See 209 * also RTPROC_FLAGS_ONLY_BASIC_PROFILE */ 213 210 #define RTPROC_FLAGS_PROFILE RT_BIT(4) 214 211 /** Create process without a console window. … … 235 232 * a uint32_t containing the session ID, UINT32_MAX means any session. */ 236 233 #define RTPROC_FLAGS_DESIRED_SESSION_ID RT_BIT(11) 234 /** This is a modifier to RTPROC_FLAGS_PROFILE on unix systems that makes it 235 * skip trying to dump the environment of a login shell. */ 236 #define RTPROC_FLAGS_ONLY_BASIC_PROFILE RT_BIT(12) 237 237 /** Valid flag mask. */ 238 #define RTPROC_FLAGS_VALID_MASK UINT32_C(0x fff)238 #define RTPROC_FLAGS_VALID_MASK UINT32_C(0x1fff) 239 239 /** @} */ 240 240
Note:
See TracChangeset
for help on using the changeset viewer.