-
In some cases you need to display the callstack of the current thread or your ar...
In some cases you need to display the callstack of the current thread or your are just interested in the callstack of other threads / processes. Therefore I wrote this project.
The goal for this project was the following:
Simple interface to generate a callstack
C++ based to allow overwrites of several methods
Hiding the implementation details (API) from the class interface
Support of x86, x64 and IA64 architecture
Default output to debugger-output window (but can be customized)
Support of user-provided read-memory-function
Support of the widest range of development-IDEs (VC5-VC8)
Most portable solution to walk the callstack
-In some cases you need to display the callstack of the current thread or your are just interested in the callstack of other threads/processes. Therefore I wrote this project.
The goal for this project was the following:
Simple interface to generate a callstack
C++ based to allow overwrites of several methods
Hiding
- 2022-02-14 18:26:54下载
- 积分:1
-
用途:用向量(稀疏存储)形式的Gauss
用途:用向量(稀疏存储)形式的Gauss-Seidel迭代解线性方程组Ax=b
% 格式: x=spgs(A,b,x0,e,N),A为系数矩阵,b为右端向量,x返回解向量。
% x0为初值向量(默认原点),e为精度(默认1e-4),设置迭代次数上限以防发散(默
% 认500)。 -purposes : with Vector (sparse storage) form of Gauss- Seidel iterative solution of linear equations Ax = b% Format : spgs x = (A, b, x0, e, N), A coefficient matrix, b subguadratic vector, returning x vector. X0% for initial vector (the default origin), e-precision (default 1e-4), iteration ceiling set to prevent divergence (mime identified 500%).
- 2022-04-14 12:19:24下载
- 积分:1
-
Client of Openh323 net video meeting system
openh323可以用于视频会议系统这是客户端-Client of Openh323 net video meeting system
- 2023-05-16 17:00:02下载
- 积分:1
-
将3个字节的二进制小数部分转换为十进制小数,并可实现保存及显示。...
将3个字节的二进制小数部分转换为十进制小数,并可实现保存及显示。-Will be 3 bytes of binary conversion of decimal fractional part of a small number, and realize the preservation and display.
- 2022-09-08 09:05:03下载
- 积分:1
-
IN POLYGON TEST FOR CONVEX POLYGON
This submission has inspired the following:...
为凸多边形检测边和点的,可以用于分割,流行中-IN POLYGON TEST FOR CONVEX POLYGON
This submission has inspired the following:
IN POLYGON TEST FOR CONVEX POLYGON
- 2023-03-12 04:35:04下载
- 积分:1
-
visual c++编写的一个界面应用程序,能随机产生一些风景画,但是比较模糊,类似线条组成的。...
visual c++编写的一个界面应用程序,能随机产生一些风景画,但是比较模糊,类似线条组成的。-visual c++ to prepare an application interface to a number of randomly generated landscapes, but rather ambiguous, consisting of similar lines.
- 2022-01-26 07:39:18下载
- 积分:1
-
一个窗口的类型在Child和Popup之间互换
一个窗口的类型在Child和Popup之间互换-The exmaple of the interchange of a windows style between child and popup
- 2022-01-29 00:31:19下载
- 积分:1
-
数据结构基本操作,对链表的线性数据结构进行排序,并输出排序的结果...
数据结构基本操作,对链表的线性数据结构进行排序,并输出排序的结果-The basic operation of the data structure of the linear list data structure to sort and output the results of sequencing
- 2022-09-02 22:00:03下载
- 积分:1
-
用Evc开发的能在Wince平台下运作的Dll及Plugin的实例代码,并有完整的测试程序及源码...
用Evc开发的能在Wince平台下运作的Dll及Plugin的实例代码,并有完整的测试程序及源码-Evc used in the development of the platform Wince operating Dll and Plugin code examples, and complete testing procedures and FOSS
- 2022-01-26 00:49:05下载
- 积分:1
-
进程管理器
进程资源管理器,可以显示正在运行的进程,线程和模块。其着找到基地,并开始地址。例如,使用
EnumProcessModulesEx和NtQueryInformationThread功能在C#。
void PrintModules (Int32 ProcID)
{
IntPtr hProcess = OpenProcess(ProcessAccessFlags.QueryInformation | ProcessAccessFlags.VMRead, false, ProcID);
if (hProcess != IntPtr.Zero)
&nbs
- 2022-01-22 17:14:27下载
- 积分:1