搜索资源列表
vld-10
- 用vc++编写的加强的内存泄露检测程序。检测new和malloc,com-based的内存泄露。-vc prepared with the strengthening of memory leakage detection procedures. Detection of new and malloc, com-based memory leakage.
pa
- #include \"define.h\" #include <stdio.h> #include <string.h> #include <ctype.h> #include <malloc.h> FILE *fp /*////////////////////////////////////////////////////////////////////////////// This is a pretreat
MALLOC
- malloc source code _C CUSTOMIZED MEMORY ALLOCATORS_ by Paul Anderson -malloc source code _C CUSTOMIZED Memory AL LOCATORS_ by Paul Anderson
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)模拟可变分区内存管理,实现对该内存区的分配和释放管理。
lab7
- malloc lab
mmref
- mmref.c of csapp lab7: malloc and realloc memory space
freememory
- Uses malloc() to determine the amount of free memory on the system Don´ t run this program in Windows with virtual memory enabled, as windows just increases virtual memory
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!
cudaMallocAndMemcpy
- cuda 并行代码 Malloc And Memcpy例子-cuda examples of parallel code Malloc And Memcpy
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.
malloc-lab
- 在这个实验中你将写一个C程序,即动态存储分配器,你自己的malloc版本,免费和realloc例程。你被鼓励去探索设计空间,创造性地实施一个分配器,是正确的,有效的fi 高效、快速。 -In this lab you will be writing a dynamic storage allocator for C programs, i.e., your own version of the malloc, free and realloc routines. You are enc
cudaMallocAndMemcpy
- 在主机和设备之间复制--从“cudaMallocAndMemcpy”模板开始。 第1部分:为设备上的指标 d_a 和 d_b 分配内存。 第2部分:将主机上的h_a复制到设备上的 d_a。 第3部分:将设备从 d_a复制到 d_b。 第4部分:将设备上的 d_b 复制回主机上的 h_a。 第5部分:在主机上释放 d_a 和 d_b。 额外部分:用cudaMallocHost代替malloc来分配h_a。(Copy between host and device -- start