zoukankan      html  css  js  c++  java
  • windows里常见的内存填充数据含义

    * 0xABABABAB : Used by Microsoft's HeapAlloc() to mark "no man's land" guard bytes after allocated heap memory
    * 0xABADCAFE : A startup to this value to initialize all free memory to catch errant pointers
    * 0xBAADF00D : Used by Microsoft's LocalAlloc(LMEM_FIXED) to mark uninitialised allocated heap memory
    * 0xBADCAB1E : Error Code returned to the Microsoft eVC debugger when connection is severed to the debugger
    * 0xBEEFCACE : Used by Microsoft .NET as a magic number in resource files
    * 0xCCCCCCCC : Used by Microsoft's C++ debugging runtime library to mark uninitialised stack memory
    * 0xCDCDCDCD : Used by Microsoft's C++ debugging runtime library to mark uninitialised heap memory
    * 0xDEADDEAD : A Microsoft Windows STOP Error code used when the user manually initiates the crash
    * 0xFDFDFDFD : Used by Microsoft's C++ debugging heap to mark "no man's land" guard bytes before and after allocated heap memory
    * 0xFEEEFEEE : Used by Microsoft's HeapFree() to mark freed heap memory

  • 相关阅读:
    demo12-回到顶部
    demo11-友情链接
    demo10-超链接标签
    demo09-程序员练习
    demo08-图片标签
    demo07-盒子标签
    demo06-字体标签
    demo05-换行标签
    转 j2ee .线程池.对象池,连接池
    几种开源Java Web容器线程池…
  • 原文地址:https://www.cnblogs.com/Gregg/p/10886203.html
Copyright © 2011-2022 走看看