STLdoc
STLdocumentation
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
Public Member Functions | Static Public Member Functions | Private Attributes | List of all members
Concurrency::details::_TaskCreationCallstack Class Reference

Callstack container, which is used to capture and preserve callstacks in ppltasks. Members of this class is examined by vc debugger, thus there will be no public access methods. Please note that names of this class should be kept stable for debugger examining. More...

#include <ppltasks.h>

Public Member Functions

 _TaskCreationCallstack ()
 
 __declspec (noinline) static _TaskCreationCallstack _CaptureMultiFramesCallstack(size_t _CaptureFrames)
 

Static Public Member Functions

static _TaskCreationCallstack _CaptureSingleFrameCallstack (void *_SingleFrame)
 

Private Attributes

void_M_SingleFrame
 
std::vector< void * > _M_frames
 

Detailed Description

Callstack container, which is used to capture and preserve callstacks in ppltasks. Members of this class is examined by vc debugger, thus there will be no public access methods. Please note that names of this class should be kept stable for debugger examining.

Constructor & Destructor Documentation

Concurrency::details::_TaskCreationCallstack::_TaskCreationCallstack ( )
inline
224  {
225  _M_SingleFrame = nullptr;
226  }
void * _M_SingleFrame
Definition: ppltasks.h:220

Member Function Documentation

Concurrency::details::_TaskCreationCallstack::__declspec ( noinline  )
inline
239  {
241  _csc._M_frames.resize(_CaptureFrames);
242  // skip 2 frames to make sure callstack starts from user code
243  _csc._M_frames.resize(::Concurrency::details::platform::CaptureCallstack(&_csc._M_frames[0], 2, _CaptureFrames));
244  return _csc;
245  }
_TaskCreationCallstack()
Definition: ppltasks.h:223
_CRTIMP size_t __cdecl CaptureCallstack(void **stackData, size_t skipFrames, size_t captureFrames)
static _TaskCreationCallstack Concurrency::details::_TaskCreationCallstack::_CaptureSingleFrameCallstack ( void _SingleFrame)
inlinestatic
230  {
232  _csc._M_SingleFrame = _SingleFrame;
233  return _csc;
234  }
_TaskCreationCallstack()
Definition: ppltasks.h:223

Member Data Documentation

std::vector<void *> Concurrency::details::_TaskCreationCallstack::_M_frames
private
void* Concurrency::details::_TaskCreationCallstack::_M_SingleFrame
private

The documentation for this class was generated from the following file: