Skip to content

Commit e307341

Browse files
committed
link fixes
1 parent b27b256 commit e307341

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

docs/debugger/debug-multithreaded-applications-in-visual-studio.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ In addition, multithreading introduces some new types of potential bugs. Often,
5050

5151
Visual Studio provides different tools for use in debugging multithreaded apps.
5252

53-
- For threads, the primary tools for debugging threads are the **Threads** window, thread markers in source windows, **Parallel Stacks** window, **Parallel Watch** window, and the **Debug Location** toolbar. To get started, see [Get started debugging a multithreaded application](../debugger/get-started-debugging-multithreaded-applications.md) and [Walkthrough: Debug using the Threads Window](../debugger/how-to-use-the-threads-window.md).
53+
- For threads, the primary tools for debugging threads are the **Threads** window, thread markers in source windows, **Parallel Stacks** window, **Parallel Watch** window, and the **Debug Location** toolbar. To get started, see [Get started debugging a multithreaded application](../debugger/get-started-debugging-multithreaded-apps.md) and [Walkthrough: Debug using the Threads Window](../debugger/how-to-use-the-threads-window.md).
5454

5555
- For code that uses the [Task Parallel Library (TPL)](http://msdn.microsoft.com/Library/b8f99f43-9104-45fd-9bff-385a20488a23) or the [Concurrency Runtime](/cpp/parallel/concrt/concurrency-runtime/), the primary tools for debugging multithreaded applications are the **Parallel Stacks** window, the **Parallel Watch** window, and the **Tasks** window (the **Tasks** window also supports JavaScript). To get started, see [Walkthrough: Debugging a Parallel Application](../debugger/walkthrough-debugging-a-parallel-application.md) and [Walkthrough: Debugging a C++ AMP Application](http://msdn.microsoft.com/Library/40e92ecc-f6ba-411c-960c-b3047b854fb5).
5656

@@ -61,7 +61,7 @@ Visual Studio provides different tools for use in debugging multithreaded apps.
6161
Debugging a multithreaded application that has a user interface can be especially difficult. In that case, you might consider running the application on a second computer and using remote debugging. For information, see [Remote Debugging](../debugger/remote-debugging.md).
6262

6363
## In This Section
64-
[Get started debugging a multithreaded application](../debugger/get-started-debugging-multithreaded-applications.md).
64+
[Get started debugging a multithreaded application](../debugger/get-started-debugging-multithreaded-apps.md).
6565
A guided tour of thread debugging features, with emphasis on features in the **Threads** window [!INCLUDE[vs_orcas_long](../debugger/includes/vs_orcas_long_md.md)].
6666

6767
[Tools for Debugging Threads and Processes](../debugger/debug-threads-and-processes.md)

docs/debugger/get-started-debugging-multithreaded-apps.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -334,7 +334,8 @@ You can set breakpoints on different conditions, such as the thread name or (if
334334

335335
As long as the breakpoint condition is unique to the thread, and the debugger doesn't hit any other breakpoints on other threads, you can step over code and step into code without switching to other threads.
336336

337-
> [!NOTE] If you are more interested in a specific thread, then use a thread name or thread ID for the condition.
337+
> [!NOTE]
338+
> If you are more interested in a specific thread, then use a thread name or thread ID for the condition.
338339

339340
## More about the multithreaded debugging windows
340341

@@ -344,7 +345,7 @@ You can set breakpoints on different conditions, such as the thread name or (if
344345

345346
#### To learn more about the Parallel Stack and Parallel Watch windows
346347

347-
- See [How to: Use the Parallel Stack Window](../debugger/using-the-parallel-stack-window.md)
348+
- See [How to: Use the Parallel Stack Window](../debugger/using-the-parallel-stacks-window.md)
348349

349350
- See [How to: Use the Parallel Watch Window](../debugger/how-to-use-the-parallel-watch-window.md)
350351

docs/debugger/how-to-use-the-threads-window.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ translation.priority.ht:
3737
- "zh-tw"
3838
---
3939
# Walkthrough: Debug a multithreaded application in Visual Studio using the Threads window
40-
Visual Studio provides a **Threads** window and other user interface elements to help you debug multithreaded applications. This tutorial shows how to use the **Threads** window and the **Debug Location** toolbar. For information on the other tools, see [Get started debugging multithreaded applications](../debugger/get-started-debugging-multithreaded-applications.md). This tutorial takes only a few minutes, but completing it will familiarize you with the features for debugging multithreaded applications.
40+
Visual Studio provides a **Threads** window and other user interface elements to help you debug multithreaded applications. This tutorial shows how to use the **Threads** window and the **Debug Location** toolbar. For information on the other tools, see [Get started debugging multithreaded applications](../debugger/get-started-debugging-multithreaded-apps.md). This tutorial takes only a few minutes, but completing it will familiarize you with the features for debugging multithreaded applications.
4141

4242
To begin this tutorial, you need a multithreaded application project. Follow the steps listed here to create that project.
4343

0 commit comments

Comments
 (0)