malloc.pdf
2021-02-01 19:33:50 725KB C++ malloc allocator
1
动态内存管理含有碎片收集策略,快速申请,方便移植,可以用于嵌入式系统中
2020-03-27 03:18:05 2.82MB 内存管理里
1
malloc的源码实现,很方便移植。特别是在BootLoader或者单片机开发过程中,想要实现malloc、free、realloc等函数时,只需要将压缩包里的malloc.c和malloc.h拷贝到你的工程的同一个目录下,编译链接进去即可。压缩包里的test.c提供了一个使用示例供参考。【该malloc的实现改编自uboot源码】
2019-12-21 22:21:00 51KB malloc源码
1
2014最新版malloc lab答案,pku小伙伴快来下载啊
2019-12-21 22:09:52 25KB malloc lab mm.c 满分答案
1
《深入理解计算机系统》一书的配套lab之malloc lab。学生用来实现自己的malloc, realloc和free函数。 Students implement their own versions of malloc, free, and realloc. This lab gives students a clear understanding of data layout and organization, and requires them to evaluate different trade-offs between space and time efficiency. One of our favorite labs. When students finish this one, they really understand pointers!
2019-12-21 22:06:50 3.96MB CSAPP malloc lab
1
自己写的动态内存管理源码,其中包含 malloc.c和 malloc.h两个文件,可以动态申请和释放内存
2019-12-21 22:03:36 2KB malloc 源码
1
csapp lab6 malloc lab 完成方法 显示空闲链表 pt96
2019-12-21 21:28:39 850KB csapp lab malloc
1
本文叙述了calloc和malloc用法的区别,函数malloc()和函数calloc()的主要区别是前者不能初始化所分配的内存空间,而后者能。
2019-12-21 21:13:33 4KB calloc malloc
1
仿照linux的buddy+slub内存管理算法,可以在裸机中应用标准内存管理库函数,如malloc free等
2019-12-21 21:01:29 21KB 内存管理 slub malloc linux
1
In this lab you will be writing a conservative mark-and-sweep garbage collector for C programs. Download the materials of this lab. malloc.c
2019-12-21 21:00:53 266KB Garbage Collector malloc.c
1