搜索资源列表
dmalloc-5.4.2
- 减少内存碎片的malloc分配函数,非常不错,可以用于LINUX, WIN32 ,VXWORKS
!!malloc参考代码与注释
- lunix下用c编写malloc函数-lunix c prepared using malloc function
neicunfeipei
- 编写一个C程序,用char *malloc(unsigned size)函数向系统申请一次内存空间(如size=1000,单位为字节),用循环首次适应法 addr = (char *)lmalloc(unsigned size) 和 lfree(unsigned size,char * addr)模拟可变分区内存管理,实现对该内存区的分配和释放管理。
mmref
- mmref.c of csapp lab7: malloc and realloc memory space
mymalloc
- 高人编写的动态内存处理函数,非采用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!
main
- 本任务要求实现一个简单的存储管理器,对进程地址空间的管理有进一步的了解。 任务要求 (1) 实现一个malloc/free,必须按讲义指出的方案(注意,因为网上有一些现成的版本,凡未按讲义方案实现者均无效) (2) 设计测试实例,并与libc的malloc实现进行性能比较。 (3) 选做,分析你正在使用的libc下malloc的实现。 请参考下面的材料注意其如何保证性能。 -This task requires a simple storage management ha
malloc.c
- Simple well documented malloc implementation. Great for when you need to write your own.
C-Standard-Library
- C标准库源码,对于了解malloc、printf等库函数有很大帮助。-C standard library source code, for understanding malloc, printf and other library functions are very helpful.
