博客

  • Debug step by step(1) Memeory leak问题调试常用手段

    1, check handle leak.

    Use Lua script to search the codes.

    2, check memory leak.

    If you use CRT, you could use:

    _CrtSetDbgFlag(_CrtSetDbgFlag(_CRTDBG_REPORT_FLAG) | _CRTDBG_LEAK_CHECK_DF);
    //_CrtSetBreakAlloc(182366);

    // http://msdn.microsoft.com/en-US/library/e5ewb1h3(VS.80).aspx

    3, get performance data.

    We could use PDH functions. CPDHData

    4, 注释代码隔离问题。

    5,

    1. 加一个对象计数器, 哪种对象一直增加, 就是它了.
    2. 申请比较多的类, 轮流内部增加一个 char buffer[65536], 看看内存增加是否加快, 很快就可以找出了.

    6, VLD boundchecker ADPlus WinDbg SysInternals-Tools (handle)

    7, OANOCACHE=1
    http://msdn.microsoft.com/en-us/library/ms221105.aspx
    For example, if the application allocates a BSTR and frees it, the free block of memory is put into the BSTR cache by Automation. If the application then allocates another BSTR, it can get the free block from the cache. If the second BSTR allocation is not freed, IMallocSpy will attribute the leak to the first allocation of the BSTR. You can determine the correct source of the leak (the second allocation) by disabling the BSTR caching using the debug version of Oleaut32.dll, and by setting the environment variable OANOCACHE=1 before running the application.

    8, some tools Mozilla uses:

    http://www.mozilla.org/performance/tools.html

    9, 启用或禁用内存诊断可以调用全局函数 AfxEnableMemoryTracking()

    #ifdef _DEBUG
    CMemoryState oldMemState, newMemState, diffMemState;
    oldMemState.Checkpoint();
    #endif

    (被测试的代码)

    #ifdef _DEBUG
    newMemState.Checkpoint();
    if(diffMemState.Difference(oldMemState, newMemState)) {
    TRACE(“Memory Leaked Here:\n\n” );
    }
    #endif

    抄袭了toplanguage讨论中的一些想法。

    http://groups.google.com/group/pongba/browse_thread/thread/6c871ba9a79be74a#

  • 如何学习Lua编程

    最近迷上了使用Lua写一些方便的小程序,也看了一些关于lua的文档。发现不少人经常问一些很常见的问题,感觉好像还没有找到学习lua的好办法。下面介绍一下个人经验。

    (更多…)

  • 秀秀一些照片

    96470021

    与永和豆浆门口的吉祥物合个影96470010

    劳动公园的荷花池。

    96470011

    夏日荷花

    96470016 

    海事大学的草坪,我们本科同学十年聚会,很开心。

    96470020

    以前,海大叫做海运学院。

    96470023

    劳动公园的花坛。

    96470028 

    宝贝,你这表情也太成熟了。

    96470036

    蘑菇房子。

    96470006 

    马格南咖啡馆,点了一份奶茶和意大利肉酱面,味道还不错,不过更适合小资白领呆上一下午上上网什么的。我们去就是为了吃饭!

    96470001

    小姨子对这一张很不爽,评论是“矫揉造作”。

    96470005

  • Lua通过COM调用外部程序excel及调用windows api

    为了方便起见,最好安装lua for windows,里面已经包含了很多有用的第三方模块。

    (更多…)

  • Lua的Iterator以及函数心得

    local tbl = {"one", "two", "three", ‘five’}
    local count = #tbl
    local inc = 0

    (更多…)