Welcome![Sign In][Sign Up]
Location:
Search - malloc

Search list

[VxWorksvxmalloc

Description: This version of malloc for VxWorks contains two different algorithms. One is the BSD based Kingsley "bucket" allocator which has some unique fragmentation behavior. The other is Doug Lea s well tested allocator that tries to minimize fragmentation while keeping the speed/space requirements. 非常实用,可移植用作实现跨平台的嵌入式的内存分配机制.-This version of malloc for VxWorks contain 's two different algorithms. One is the BSD-based Kingsley, "bucket" allocator which has some uni que fragmentation behavior. The other is Doug L. ea's well tested allocator that tries to minimiz e fragmentation while keeping the speed/space requirements. very practical, can be used for transplantation to achieve cross-platform embedded memory allocation mechanism.
Platform: | Size: 26624 | Author: nico zhu | Hits:

[Hook apileakfree

Description: 以malloc hook的方式检测内存泄漏的工具 -malloc hook to the memory leak detection tools
Platform: | Size: 179200 | Author: chen | Hits:

[OS Developdmalloc-5.4.2

Description: 减少内存碎片的malloc分配函数,非常不错,可以用于LINUX, WIN32 ,VXWORKS-Reduce the memory allocation function malloc debris, very good, can be used to LINUX, WIN32, VXWORKS
Platform: | Size: 371712 | Author: 张三 | Hits:

[OtherDMALLOC

Description: MALLOC调试工具(附源码-Malloc debugging tools (with source code
Platform: | Size: 4096 | Author: yanxiaobin | Hits:

[Embeded LinuxmTrack

Description: 嵌入式系统下内存泄漏检查库函数mTrace以及测试代码,有详细使用文档.这个是将malloc和free 函数控制起来,检查内存.-Embedded System memory leak checking library function mTrace and test code, have detailed the use of the document. This is to malloc and free function control, and check the memory.
Platform: | Size: 40960 | Author: Andrew Huang | Hits:

[Linux-Unixmyprog

Description: 用char *malloc(unsigned size)函数向系统申请一次内存空间(如size=1000,单位为字节),用首次适应法 addr = (char *)fmalloc(unsigned size) 和 ffree(unsigned size,char * addr)(基本要求)或 循环首次适应法(提高一步) addr = (char *)lmalloc(unsigned size) 和 lfree(unsigned size,char * addr) 模拟UNIX可变分区内存管理,实现对该内存区的分配和释放管理。 -With char* malloc (unsigned size) function to the system to apply for a memory space (eg, size = 1000, measured in bytes), using the first method to adapt to addr = (char*) fmalloc (unsigned size) and ffree (unsigned size, char* addr) (basic requirements) or the first cycle of adaptation law (improve step) addr = (char*) lmalloc (unsigned size) and lfree (unsigned size, char* addr) variable partition simulation UNIX memory management, realize the memory allocation and release management.
Platform: | Size: 2048 | Author: | Hits:

[Other Embeded programC_memory_management

Description: C语言内存管理源码,一个介绍Malloc实现的源码。嵌入式系统里面可以参考,以了解如何减少内存碎片的问题!-C language memory management source, a source of introduction malloc realize. Embedded systems which can refer to learn how to reduce the problem of memory fragmentation!
Platform: | Size: 1024 | Author: 李平 | Hits:

[OS programExercise2

Description: 系统级编程课程中的内存围栏,意在改写自己的malloc和free函数,增强程序处理的容错性,健壮性-System-level programming courses of memory fences, intended to rewrite their own malloc and free function, and enhance procedures to handle the fault tolerance, robustness
Platform: | Size: 436224 | Author: 程功 | Hits:

[Windows Developxmem

Description: XMEM Extended C/C++ Dynamic Memory Control and Debug Library: The extended C/C++ Dynamic Memory Control and Debug Library XMEM is a replacement library for malloc/free and new/delete to find memory leaks and other memory related errors in C/C++ code
Platform: | Size: 1183744 | Author: zhl | Hits:

[OtherCfunctionsourcecode

Description: 一些基本函数的程序源代码:包括(1)malloc函数(2)free函数(3)realloc函数(4)calloc函数 (5)学生数据库的编写(6)通讯录 以上都包含c语言源码,obj文件及应用程序-Some of the basic function of the source code of the program include: (1) malloc function (2) free function (3) realloc function (4) calloc function (5) the preparation of students in the database (6) address book contains more than c language source code, obj documents and applications
Platform: | Size: 49152 | Author: qcx | Hits:

[OS programmalloc-memory

Description: 模拟操作系统对内存分配和释放的四种情况。用户可以自行设定将要分配和释放的内存大小来查看相应的结果。-Simulation of the operating system on memory allocation and release of the four types of circumstances. Users can set their own distribution and release to the memory size to see results.
Platform: | Size: 1024 | Author: cheng sonja | Hits:

[OtherMALLOC

Description: TCL2543电压表中的应用,内存管理部分-TCL2543 voltage meter application, the memory management component
Platform: | Size: 1024 | Author: yaoyh | Hits:

[CSharpmalloc

Description: 内存分配模拟实现 模拟各种内存分配算法-Memory allocation for analog simulation of a variety of memory allocation algorithms
Platform: | Size: 428032 | Author: xuying | Hits:

[Othermalloc

Description: 约瑟夫环的算法-Joseph Ring algorithm
Platform: | Size: 1024 | Author: 王文娟 | Hits:

[Windows Developmalloc

Description: malloc about C++ application
Platform: | Size: 1024 | Author: dy | Hits:

[Software EngineeringFreeBSD-7-kernel

Description: FreeBSD-7 kernel malloc source code analysis
Platform: | Size: 284672 | Author: zhangshouying | Hits:

[OS Developmmref

Description: mmref.c of csapp lab7: malloc and realloc memory space
Platform: | Size: 2048 | Author: s | Hits:

[Compress-Decompress algrithmshuffman

Description: 在网上能够找到的最简单,最快速的哈夫曼编码。本方法不使用任何扩展动态库,比如STL或者组件。只使用简单的C函数,比如:memset,memmove,qsort,malloc,realloc和memcpy。-Online to find the simplest, fastest Huffman. This method does not use any extension of the dynamic libraries, such as STL or components. Only using a simple C function, such as: memset, memmove, qsort, malloc, realloc and memcpy.
Platform: | Size: 14336 | Author: zhaoyibin | Hits:

[OS Developmymalloc

Description: 高人编写的动态内存处理函数,非采用malloc,如果想深入研究动态内存管理,此程序是个不错的选择!-Gao Ren prepared by the dynamic memory handling functions, the non-use of malloc, if you want to in-depth study of dynamic memory management, this program is a good choice!
Platform: | Size: 4096 | Author: fang | Hits:

[Windows Developmalloc

Description: malloc可以查看具体怎么实现的 自己也能跟好的了解malloc源文件 -malloc可以查看具体怎么实现的 自己也能跟好的了解malloc源文件 好好看看
Platform: | Size: 1024 | Author: 汪涵 | Hits:
« 1 23 4 5 6 7 8 9 10 ... 20 »

CodeBus www.codebus.net