- Timestamp:
- Jun 27, 2016 11:31:20 AM (8 years ago)
- Location:
- trunk
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/doc/manual/en_US/SDKRef.xml
r61524 r61893 3918 3918 3919 3919 <itemizedlist> 3920 <listitem>TODO: Rename EXECUTEPROCESSFLAG_NO_PROFILE to EXECUTEPROCESSFLAG_PROFILE (also in Main).</listitem> 3920 <listitem><para><link linkend="ProcessCreateFlag__NoProfile">ProcessCreateFlag::NoProfile</link> 3921 has been renamed to <link linkend="ProcessCreateFlag__Profile">ProcessCreateFlag::Profile</link>, 3922 whereas the semantics also has been changed: <link linkend="ProcessCreateFlag__NoProfile">ProcessCreateFlag::NoProfile</link> 3923 explicitly <emphasis role="bold">did not</emphasis> utilize the guest user's profile data, 3924 which in turn <link linkend="ProcessCreateFlag__Profile">ProcessCreateFlag::NoProfile</link> 3925 explicitly <emphasis role="bold">does now</emphasis>.</para> 3926 </listitem> 3921 3927 </itemizedlist> 3922 3928 -
trunk/include/VBox/GuestHost/GuestControl.h
r60748 r61893 95 95 #define EXECUTEPROCESSFLAG_IGNORE_ORPHANED RT_BIT(1) 96 96 #define EXECUTEPROCESSFLAG_HIDDEN RT_BIT(2) 97 #define EXECUTEPROCESSFLAG_ NO_PROFILE RT_BIT(3) /**< @todo Rename to EXECUTEPROCESSFLAG_PROFILE in next API change. */97 #define EXECUTEPROCESSFLAG_PROFILE RT_BIT(3) 98 98 #define EXECUTEPROCESSFLAG_WAIT_STDOUT RT_BIT(4) 99 99 #define EXECUTEPROCESSFLAG_WAIT_STDERR RT_BIT(5) -
trunk/src/VBox/Additions/common/VBoxService/VBoxServiceControlProcess.cpp
r60622 r61893 1341 1341 if (fFlags & EXECUTEPROCESSFLAG_HIDDEN) 1342 1342 uProcFlags |= RTPROC_FLAGS_HIDDEN; 1343 /** @todo Rename to EXECUTEPROCESSFLAG_PROFILE in next API change. */ 1344 if (!(fFlags & EXECUTEPROCESSFLAG_NO_PROFILE)) 1343 if (!(fFlags & EXECUTEPROCESSFLAG_PROFILE)) 1345 1344 uProcFlags |= RTPROC_FLAGS_PROFILE; 1346 1345 if (fFlags & EXECUTEPROCESSFLAG_UNQUOTED_ARGS) -
trunk/src/VBox/Frontends/VBoxManage/VBoxManageGuestCtrl.cpp
r60491 r61893 331 331 " [--exe <path to executable>] [--timeout <msec>]\n" 332 332 " [-E|--putenv <NAME>[=<VALUE>]] [--unquoted-args]\n" 333 " [--ignore-operhaned-processes] [-- no-profile]\n"333 " [--ignore-operhaned-processes] [--profile]\n" 334 334 " [--no-wait-stdout|--wait-stdout]\n" 335 335 " [--no-wait-stderr|--wait-stderr]\n" … … 342 342 " [--exe <path to executable>] [--timeout <msec>]\n" 343 343 " [-E|--putenv <NAME>[=<VALUE>]] [--unquoted-args]\n" 344 " [--ignore-operhaned-processes] [-- no-profile]\n"344 " [--ignore-operhaned-processes] [--profile]\n" 345 345 " -- <program/arg0> [argument1] ... [argumentN]]\n" 346 346 "\n"); … … 1313 1313 { 1314 1314 kGstCtrlRunOpt_IgnoreOrphanedProcesses = 1000, 1315 kGstCtrlRunOpt_NoProfile, 1315 kGstCtrlRunOpt_NoProfile, /** @todo Deprecated and will be removed soon; use kGstCtrlRunOpt_Profile instead, if needed. */ 1316 kGstCtrlRunOpt_Profile, 1316 1317 kGstCtrlRunOpt_Dos2Unix, 1317 1318 kGstCtrlRunOpt_Unix2Dos, … … 1329 1330 { "--unquoted-args", 'u', RTGETOPT_REQ_NOTHING }, 1330 1331 { "--ignore-operhaned-processes", kGstCtrlRunOpt_IgnoreOrphanedProcesses, RTGETOPT_REQ_NOTHING }, 1331 { "--no-profile", kGstCtrlRunOpt_NoProfile, RTGETOPT_REQ_NOTHING }, 1332 { "--no-profile", kGstCtrlRunOpt_NoProfile, RTGETOPT_REQ_NOTHING }, /** @todo Deprecated. */ 1333 { "--profile" kGstCtrlRunOpt_Profile, RTGETOPT_REQ_NOTHING }, 1332 1334 /* run only: 6 - options */ 1333 1335 { "--dos2unix", kGstCtrlRunOpt_Dos2Unix, RTGETOPT_REQ_NOTHING }, … … 1387 1389 1388 1390 case kGstCtrlRunOpt_NoProfile: 1389 aCreateFlags.push_back(ProcessCreateFlag_NoProfile); 1391 /** @todo Deprecated, will be removed. */ 1392 RTPrintf("Warning: Deprecated option \"--no-profile\" specified\n"); 1393 break; 1394 1395 case kGstCtrlRunOpt_Profile: 1396 aCreateFlags.push_back(ProcessCreateFlag_Profile); 1390 1397 break; 1391 1398 -
trunk/src/VBox/Main/idl/VirtualBox.xidl
r61749 r61893 10566 10566 <enum 10567 10567 name="ProcessCreateFlag" 10568 uuid=" be8c8dbd-4a76-e9ac-20df-468e86edf383"10568 uuid="C544CD2B-F02D-4886-9901-71C523DB8DC5" 10569 10569 > 10570 10570 <desc> 10571 10571 Guest process execution flags. 10572 10572 <note>The values are passed to the guest additions, so its not possible 10573 to change (move) or reuse values.here. 10573 to change (move) or reuse values.here. See EXECUTEPROCESSFLAG_XXX 10574 10574 in GuestControlSvc.h.</note> 10575 10575 </desc> … … 10588 10588 <desc>Do not show the started process according to the guest OS guidelines.</desc> 10589 10589 </const> 10590 <const name=" NoProfile"value="8">10591 <desc> Do not use the user's profile data when exeuting a process. Only available for Windows guests.</desc>10590 <const name="Profile" value="8"> 10591 <desc>Utilize the user's profile data when exeuting a process. Only available for Windows guests at the moment.</desc> 10592 10592 </const> 10593 10593 <const name="WaitForStdOut" value="16"> -
trunk/src/VBox/Main/src-client/GuestSessionImpl.cpp
r61792 r61893 1931 1931 && !(procInfo.mFlags & ProcessCreateFlag_WaitForProcessStartOnly) 1932 1932 && !(procInfo.mFlags & ProcessCreateFlag_Hidden) 1933 && !(procInfo.mFlags & ProcessCreateFlag_ NoProfile)1933 && !(procInfo.mFlags & ProcessCreateFlag_Profile) 1934 1934 && !(procInfo.mFlags & ProcessCreateFlag_WaitForStdOut) 1935 1935 && !(procInfo.mFlags & ProcessCreateFlag_WaitForStdErr))
Note:
See TracChangeset
for help on using the changeset viewer.