搜索资源列表
malloc.tar.z
- 对内存的分配、释放和使用进行检查,以发现不合法指针,减少程序BUG
malloc.tar
- 内存分配的各种包装函数,检查内存泄漏的函数,-memory allocation function of packaging, memory leakage inspection functions, etc.
myprog
- 用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)
malloc_array
- 通过编写函数来模拟malloc()函数动态分配内存的功能-By writing the function to simulate malloc () function, the function of dynamically allocated memory
malloc.tar.z
- 对内存的分配、释放和使用进行检查,以发现不合法指针,减少程序BUG- To the memory assignment, the release and the use carry on the inspection, discovered the illegal indicator, reduces procedure BUG
efence_2_4_14.tar
- 内存越界操作检测工具,既可以在windows下使用,也可以在linux下使用,作为动态库链入可执行档即可使用里面的malloc-Cross-border operation of memory detection tool can be used in windows, linux can also be used as a dynamic library linked into the executable file to use malloc inside
debug_malloc
- 对内存的分配、释放和使用进行检查,以发现不合法指针,减少程序BUG,这部分程序已经在linux操作系统下验证通过。-Memory allocation, release and use of inspections to detect illegal pointer, reducing the procedure BUG, this part of the linux operating system procedures have been adopted under the verifica
shiyan1
- 用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) 模拟UNI
sourcecode
- 1. Program to remove all comments from a C program 2. Word count implementation using Apache s Hadoop 3. Program to implement calloc using malloc
prj0.tar
- linux 源代码: When free() is called, the memory cannot usually be returned to the OS, do to contiguity restrictions. So your implementation should simply put this memory on its own internal free list. When malloc() is called, your implementation should
valgrind
- Using Valgrind to Find Memory Leaks and Invalid Memory Use Valgrind is a multipurpose code profiling and memory debugging tool for Linux. It allows you to run your program in its own environment that monitors memory usage such as calls to malloc
how_glibc_affects_malloc_performance
- 本文讲述了glib是如何影响malloc性能的。glibc中通过mmap和sbrk两种方式来实现内存分配,两种方式性能各不相同。-This article describes how glib the performance of malloc. glibc mmap and sbrk through two ways to implement memory allocation, performance varied in two ways.
malloc
- A malloc that runs on different traces and allocates/frees memory as per the requests in these trace files!
cunchuguanli
- 1.分析UNIX最先适应(First Fit,FF)存储分配算法,即map数据结构、存储分配函数malloc()和存储释放函数mfree(),找出与算法有关的成分。 2.修改上述与算法有关的成分,使其分别体现BF(Best Fit,最佳适应)分配原则和WF(Worst Fit,最坏适应)分配原则。 -1. The first adaptation of UNIX (First Fit, FF) memory allocation algorithm, that is, map the d
chunchuguanli
- 编写一个C程序,用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
A-dynamic-memory-manage-module
- This the program related to heap memory managing functions, free() and malloc().-This is the program related to heap memory managing functions, free() and malloc().
qemu-malloc
- malloc-like functions for system emulation.
Malloc
- Malloc from cs:app with configurable segregated free list and probe scheme defined as macros.
malloc
- malloc.h - NTFS kernel memory handling. Part of the Linux-NTFS project.
malloc
- Only the AC_FUNC_MALLOC macro defines malloc already in config.h. -Only the AC_FUNC_MALLOC macro defines malloc already in config.h.
