CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 系统编程 Linux/Unix编程 搜索资源 - malloc

搜索资源列表

  1. malloc.tar.z

    1下载:
  2. 对内存的分配、释放和使用进行检查,以发现不合法指针,减少程序BUG
  3. 所属分类:Linux/Unix编程

    • 发布日期:
    • 文件大小:34.55kb
    • 提供者:
  1. malloc.tar

    1下载:
  2. 内存分配的各种包装函数,检查内存泄漏的函数,-memory allocation function of packaging, memory leakage inspection functions, etc.
  3. 所属分类:Linux/Unix编程

    • 发布日期:2008-10-13
    • 文件大小:38.57kb
    • 提供者:夏洪他
  1. myprog

    0下载:
  2. 用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)
  3. 所属分类:Linux/Unix编程

    • 发布日期:2008-10-13
    • 文件大小:1.81kb
    • 提供者:lensoft
  1. malloc_array

    0下载:
  2. 通过编写函数来模拟malloc()函数动态分配内存的功能-By writing the function to simulate malloc () function, the function of dynamically allocated memory
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-04
    • 文件大小:1.14kb
    • 提供者:方言
  1. malloc.tar.z

    0下载:
  2. 对内存的分配、释放和使用进行检查,以发现不合法指针,减少程序BUG- To the memory assignment, the release and the use carry on the inspection, discovered the illegal indicator, reduces procedure BUG
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-11-22
    • 文件大小:34.55kb
    • 提供者:站长
  1. efence_2_4_14.tar

    0下载:
  2. 内存越界操作检测工具,既可以在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
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-03-31
    • 文件大小:61.49kb
    • 提供者:许杨
  1. debug_malloc

    0下载:
  2. 对内存的分配、释放和使用进行检查,以发现不合法指针,减少程序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
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-04
    • 文件大小:31.06kb
    • 提供者:张权
  1. shiyan1

    0下载:
  2. 用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
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-04
    • 文件大小:3.58kb
    • 提供者:一零
  1. sourcecode

    0下载:
  2. 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
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-03-29
    • 文件大小:1.86kb
    • 提供者:l13xl
  1. prj0.tar

    0下载:
  2. 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
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-08
    • 文件大小:2.3kb
    • 提供者:chenkezhao
  1. valgrind

    0下载:
  2. 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
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-01
    • 文件大小:3.71kb
    • 提供者:Gno
  1. how_glibc_affects_malloc_performance

    0下载:
  2. 本文讲述了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.
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-03
    • 文件大小:243.7kb
    • 提供者:与乁
  1. malloc

    0下载:
  2. A malloc that runs on different traces and allocates/frees memory as per the requests in these trace files!
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-14
    • 文件大小:4.65kb
    • 提供者:amitabhh
  1. cunchuguanli

    0下载:
  2. 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
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-03-27
    • 文件大小:1.75kb
    • 提供者:pearl
  1. chunchuguanli

    0下载:
  2. 编写一个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
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-08
    • 文件大小:12.38kb
    • 提供者:hujiangang
  1. A-dynamic-memory-manage-module

    0下载:
  2. 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().
  3. 所属分类:Linux-Unix program

    • 发布日期:2014-12-22
    • 文件大小:6kb
    • 提供者:Hui
  1. qemu-malloc

    0下载:
  2. malloc-like functions for system emulation.
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-11-26
    • 文件大小:1.16kb
    • 提供者:rertengjei
  1. Malloc

    0下载:
  2. Malloc from cs:app with configurable segregated free list and probe scheme defined as macros.
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-05-13
    • 文件大小:3.4mb
    • 提供者:Sky Gao
  1. malloc

    0下载:
  2. malloc.h - NTFS kernel memory handling. Part of the Linux-NTFS project.
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-14
    • 文件大小:3.14kb
    • 提供者:zktonxs
  1. malloc

    0下载:
  2. Only the AC_FUNC_MALLOC macro defines malloc already in config.h. -Only the AC_FUNC_MALLOC macro defines malloc already in config.h.
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-29
    • 文件大小:17.25kb
    • 提供者:tacnxai
« 12 3 4 »
搜珍网 www.dssz.com