当前位置:  技术问答>linux和unix

网上一个Linux内存泄漏检测工具MemSnapShot.cpp在Hp Unix 下报的错!

    来源: 互联网  发布时间:2016-04-25

    本文导语:  /***********************************************************************************  * filename : MemSnapShot.cpp  * author : mjguan  * date : 2003/04/22  * description : receive message( data ) from the message queue, and analysis it.  *   * 1. 使用curs...

/***********************************************************************************
 * filename : MemSnapShot.cpp
 * author : mjguan
 * date : 2003/04/22
 * description : receive message( data ) from the message queue, and analysis it.
 * 
 * 1. 使用curses库写屏幕后,应该调用refresh()来刷新。
 ***********************************************************************************/
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 

#include 
#include 
#define  _XOPEN_SOURCE_EXTENDED
#include 


#define SINGLE_NEW 0x00 // indicate alloc memory with new type
#define ARRAY_NEW 0x01 // indicate alloc memory with new[] type
#define SINGLE_DELETE 0x02 // indicate free memory with delete type
#define ARRAY_DELETE 0x03 // indicate free memory with delete[] type

#define FILENAME_LENGTH 32 // the filename length

#define MEMORY_INFO 0X12345678 // indicate the message type on the message queue

typedef struct
{
char Filename[ FILENAME_LENGTH ]; // new所在的源程序文件名
unsigned long LineNum; // new在源文件中的行号
size_t  AllocSize; // 分配的内存大小
int OperationType;
void * pBuffer; // 分配后得到的内存指针
short errCode; // 0 - 没有释放, 1 - delete了new[]分配的内存
}MemOperation;

typedef struct 
{
int Type; // message type, in this module must be MEMORY_INFO
MemOperation Data; // content of memory operation
} MsgBuffer;

typedef struct
{
char Filename[ FILENAME_LENGTH ];
unsigned long LineNum;
void *MemoryPtr;
int OperationType;
unsigned long TotalSize;
} StatResult;

int nMsgQueue; // message queue id
int interval = 1;
pid_t pid = 0;
map mapMemory;
list listMemory;
pthread_mutex_t mutexMap;
extern int errno;
pthread_t tid1, tid2, tid3;
unsigned long int totalLeak = 0;
WINDOW *win;

void *AnalyseMessage( void * );
void *DisplayStatResult( void * );
void *MonitorKeyboard( void * );
void initial();
void popWin( char *str );
void DecodeErr( int ErrNum );

|
mapMemory.erase( record ); 
错误提示说得比较明白吧
Warning 134: "MemSnapShot.cpp", line 278 # Expected 0 arguments for macro 'erase'. 
                                            mapMemory.erase( record ); 
                                                      ^^^^^          
Error 19: "MemSnapShot.cpp", line 278 # Unexpected '('. 
                                            mapMemory.erase( record ); 
看上去erase这个方法不需要参数啊

|
好长。。。

逐条按照错误去检查

俺的是FC非HP,无法还原你的问题。

good luck!

|
看看这里有没有参考作用

http://topic.csdn.net/t/20050612/14/4076730.html

    
 
 
 
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • linux下free命令显示的内存使用情况分析
  • 哪位前辈给解释下linux下虚拟内存和物理内存的关系!
  • Linux内存文件系统(ramdisk)的三种实现方式
  • linux下内存泄露检测工具 mtrace 如果记录.so文件中的内存信息
  • linux内存文件系统ramfs实现原理
  • 有人熟悉DMA吗?我要实现内存中的内存的“搬动”。(LINUX)
  • linux下进程占用内存空间详解
  • 如何让linux没有到达内存瓶颈时回收内存页并占用最少资源
  • Linux/Centos/Ubuntu清除系统缓存释放内存命令介绍 iis7站长之家
  • 请教关于linux内存管理问题,如何给定义的变量指定固定内存段
  • Linux/Centos/Ubuntu清除系统缓存释放内存命令介绍
  • 在Linux上用C语言编写的函数里面申请了一块内存,并且返回这块内存,最终它需要释放吗?
  • linux下进程间通信:共享内存原理及具体用法举例(基于c/c++语言)
  • 大家好,我想问下有人用过"linux进程的内存使用解析"中推荐使用的"Ben Maurer写的perl脚本"查看内存么
  • 在SUSE linux下jar文档的运行,提示内存泄露,指定最大最小内存后只能在十几分钟才能打开,求各位大虾指点!
  • 我的redhat linux7.3因为内存有些少,所以我想随时查看内存的使用情况该如何去做,还有我想关掉(而不是切换)图形界面应该用什么命令
  • 请教!Linux系统C开发的程序,为什么我的程序运行时内存持续增长,程序退出后内存也没有降低?
  • 虚拟机上的Linux怎么修改Linux内存
  • 问个LINUX内存分配的问题。
  • linux9.0下内存占用一直是95%以上怎么解决
  • linux下查看java项目虚拟内存很大,请高手指点下
  • linux c/c++ IP字符串转换成可比较大小的数字
  • 在win分区上安装linux和独立分区安装linux有什么区别?可以同时安装吗?(两个linux系统)
  • linux哪个版本好?linux操作系统版本详细介绍及选择方案推荐
  • 在虚拟机上安装的linux上,能像真的linux系统一样开发linux程序么?
  • secureCRT下Linux终端汉字乱码解决方法
  • 我重装window后,把linux的引导区覆盖了,进不了linux怎么办?急啊,望热心的人帮助 (现在有linux的盘)
  • Linux c字符串中不可打印字符转换成16进制
  • 安装vmware软件,不用再安装linux系统,就可以模拟linux系统了,然后可以在其上学习一下LINUX下的基本操作 了?
  • Linux常用命令介绍:更改所属用户群组或档案属性
  • 红旗Linux主机可以通过127.0.0.1访问,但如何是连网的Win2000机器通过Linux的IP去访问Linux


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,,E-mail:www_#163.com(请将#改为@)

    浙ICP备11055608号-3