Showing results for debugging - C++ Team Blog

Nov 21, 2014
0
0

Native Memory Diagnostics in VS2015 Preview

Adam Welch (MSFT)
Adam Welch (MSFT)

In Visual Studio 2013 Update 2 and also in the earlier CTP releases of Visual Studio 2015, we released a memory diagnostic tool that allowed developers to take heap snapshots of their application and then examine the heap contents upon terminating their application.  The initial release supported viewing managed and native objects in the heap, and ...

C++
Oct 6, 2014
0
0

C++ Debugging Improvements in Visual Studio “14”

Visual CPP Team
Visual CPP Team

In Visual Studio 2015 we’ve introduced two improvements to the C++ debugging experience to address pain points that we’ve heard from you. Improved startup performance when launching applications (F5), and reduced the chance functions called from the Watch or Immediate windows deadlocking. Improved startup performance on F5 W...

C++
Oct 6, 2014
0
0

C++ Debugging Improvements in Visual Studio “14”

Andrew B Hall - MSFT
Andrew B Hall - MSFT

In Visual Studio 2015 we’ve introduced two improvements to the C++ debugging experience to address pain points that we’ve heard from you. Improved startup performance when launching applications (F5), and reduced the chance functions called from the Watch or Immediate windows deadlocking. Improved startup performance on F5 Whe...

C++
Jun 12, 2014
0
0

Project Support for Natvis

Adam Welch (MSFT)
Adam Welch (MSFT)

The past two releases of Visual Studio have evolved the Natvis format to allow developers to easily visualize their debug data inside the VC++ expression evaluator.  The first Visual Studio “14” CTP provides a new way for native developers to consume and manage their Natvis debug visualizers.  In response to requests from Visu...

C++
Jun 4, 2014
0
0

Native Memory Diagnostic Tools for Visual Studio “14” CTP

Adam Welch (MSFT)
Adam Welch (MSFT)

In Update 2 for Visual Studio 2013, memory diagnostic tools were added for Windows Store and Windows Phone that enable developers to monitor live memory consumption and take heap snapshots of their applications for further analysis.  The Visual Studio team is extending the existing tools to work for Windows Desktop applications in the next maj...

C++
Jun 4, 2014
0
0

Native Memory Diagnostic Tools for Visual Studio “14” CTP

Adam Welch (MSFT)
Adam Welch (MSFT)

In Update 2 for Visual Studio 2013, memory diagnostic tools were added for Windows Store and Windows Phone that enable developers to monitor live memory consumption and take heap snapshots of their applications for further analysis.  The Visual Studio team is extending the existing tools to work for Windows Desktop applications in the next maj...

C++
Jan 23, 2014
0
0

Examining stack traces of objects using Visual Studio 2013

Eric Battalio
Eric Battalio

It is quite common to have a program stopped in the debugger due to a crash or assertion caused by an object being in a bad state, and to track down the problem, you need to figure out how it got that way. In many cases, the call stack of the object's creation can provide valuable clues, but trying to get that call stack can be a significant chore....

C++
Jan 9, 2014
0
0

Code Debugging Content in Community

Eric Battalio
Eric Battalio

A few days ago, we called out some of the great debugging topics on the Microsoft Developer Network (MSDN) Library. Here are some excellent resources outside of the MSDN Library (in no particular order except the last one): If you know of additional resources, add them to the comments (or send them to me, [email protected])&...

C++
Jan 7, 2014
0
0

Code Debugging Topics on MSDN

Eric Battalio
Eric Battalio

The MSDN Library is a rich source of information about Microsoft products and technologies including Visual Studio and Visual C++. This post calls out some of the great code debugging topics available for Visual C++ native code developers.The best starting point for (re)visiting debugging topics is the Debugger Roadmap. It contains links to many di...

C++
Jul 1, 2013
0
0

Improved exception reporting for C++ Windows Store Apps in Visual Studio 2013

Cagri Aslan
Cagri Aslan

Windows 8.1 and Visual Studio 2013 come with improvements for exception reporting in the platform and the debugger which will make it easier for native Windows Store App developers to diagnose errors in their applications. In this post, I’ll discuss a few of those improvements that are available in Visual Studio 2013 and show the differences ...

C++