Skip to content

Commit

Permalink
Rename run/step/stop to continue/step/pause
Browse files Browse the repository at this point in the history
  • Loading branch information
HampusAdolfsson committed Dec 1, 2022
1 parent 4cb40b5 commit 251059e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@
},
"iar-debug.enableMulticoreLockstepMode": {
"default": true,
"description": "When enabled, run/step/stop actions in a multicore session affect all cores, instead of just the focused one.",
"description": "When enabled, continue/step/pause actions in a multicore session affect all cores, instead of just the focused one.",
"type": "boolean"
}
}
Expand Down Expand Up @@ -167,7 +167,7 @@
{
"command": "iar.enableMulticoreLockstepMode",
"category": "IAR Debug",
"title": "Set Run/Step/Stop affects all cores",
"title": "Set Continue/Step/Pause affects all cores",
"enablement": "debugType == cspy && iar-debug.sessionIsMulticore && !iar-debug.lockstepEnabled",
"icon": {
"dark": "images/icons/DgCoresLockstepOn_dark.svg",
Expand All @@ -177,7 +177,7 @@
{
"command": "iar.disableMulticoreLockstepMode",
"category": "IAR Debug",
"title": "Set Run/Step/Stop affects current core only",
"title": "Set Continue/Step/Pause affects current core only",
"enablement": "debugType == cspy && iar-debug.sessionIsMulticore && iar-debug.lockstepEnabled",
"icon": {
"dark": "images/icons/DgCoresLockstepOff_dark.svg",
Expand Down
2 changes: 1 addition & 1 deletion src/dap/cspyDebug.ts
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ export interface CSpyLaunchRequestArguments extends DebugProtocol.LaunchRequestA
/** The type of breakpoint to use by default. This is a hidden option; it isn't normally provided directly in the
* launch.json (it's not declared in package.json). Instead, it is provided from the user's selection in the UI. */
breakpointType?: BreakpointType;
/** For multicore sessions, whether to enable lockstep mode (i.e. whether run/step should affect all cores, or
/** For multicore sessions, whether to enable lockstep mode (i.e. whether continue/step/pause should affect all cores, or
* just the selected one). Hidden option, see above. */
multicoreLockstepModeEnabled?: boolean;
/** Enable logging the Debug Adapter Protocol */
Expand Down
2 changes: 1 addition & 1 deletion src/multicoreLockstepModeFrontend.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import { SettingsConstants } from "./settingsConstants";

/**
* Manages the frontend (client) side of the lockstep mode selection for multicore sessions (i.e. toggling whether
* run/step actions affect all cores or only the focused one).
* continue/step/pause actions affect all cores or only the focused one).
* Provides commands for setting the lockstep mode, and sends the set lockstep mode to the backend (debug adapter)
* by injecting data into launch configurations and sending custom DAP requests.
*/
Expand Down

0 comments on commit 251059e

Please sign in to comment.