VirtualBox

Ignore:
Timestamp:
Jun 27, 2016 11:31:20 AM (9 years ago)
Author:
vboxsync
Message:

Main: Renamed ProcessCreateFlag::NoProfile to ProcessCreateFlag::Profile.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Frontends/VBoxManage/VBoxManageGuestCtrl.cpp

    r60491 r61893  
    331331                     "                              [--exe <path to executable>] [--timeout <msec>]\n"
    332332                     "                              [-E|--putenv <NAME>[=<VALUE>]] [--unquoted-args]\n"
    333                      "                              [--ignore-operhaned-processes] [--no-profile]\n"
     333                     "                              [--ignore-operhaned-processes] [--profile]\n"
    334334                     "                              [--no-wait-stdout|--wait-stdout]\n"
    335335                     "                              [--no-wait-stderr|--wait-stderr]\n"
     
    342342                     "                              [--exe <path to executable>] [--timeout <msec>]\n"
    343343                     "                              [-E|--putenv <NAME>[=<VALUE>]] [--unquoted-args]\n"
    344                      "                              [--ignore-operhaned-processes] [--no-profile]\n"
     344                     "                              [--ignore-operhaned-processes] [--profile]\n"
    345345                     "                              -- <program/arg0> [argument1] ... [argumentN]]\n"
    346346                     "\n");
     
    13131313    {
    13141314        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,
    13161317        kGstCtrlRunOpt_Dos2Unix,
    13171318        kGstCtrlRunOpt_Unix2Dos,
     
    13291330        { "--unquoted-args",                'u',                                      RTGETOPT_REQ_NOTHING },
    13301331        { "--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 },
    13321334        /* run only: 6 - options */
    13331335        { "--dos2unix",                     kGstCtrlRunOpt_Dos2Unix,                  RTGETOPT_REQ_NOTHING },
     
    13871389
    13881390                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);
    13901397                    break;
    13911398
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette