搜索结果

找到约 44 项符合 MALLOC 的查询结果

VxWorks This version of malloc for VxWorks contains two different algorithms. One is the BSD based Kingsley

This version of malloc for VxWorks contains two different algorithms. One is the BSD based Kingsley "bucket" allocator which has some unique fragmentation behavior. The other is Doug Lea s well tested allocator that tries to minimize fragmentation while keeping the speed/space requirements. 非常实用 ...
https://www.eeworm.com/dl/662/189877.html
下载: 187
查看: 1061

操作系统开发 减少内存碎片的malloc分配函数

减少内存碎片的malloc分配函数,非常不错,可以用于LINUX, WIN32 ,VXWORKS
https://www.eeworm.com/dl/531/227427.html
下载: 48
查看: 1117

其他 MALLOC调试工具(附源码

MALLOC调试工具(附源码
https://www.eeworm.com/dl/534/228490.html
下载: 144
查看: 1013

嵌入式Linux 嵌入式系统下内存泄漏检查库函数mTrace以及测试代码,有详细使用文档.这个是将malloc和free 函数控制起来,检查内存.

嵌入式系统下内存泄漏检查库函数mTrace以及测试代码,有详细使用文档.这个是将malloc和free 函数控制起来,检查内存.
https://www.eeworm.com/dl/653/242693.html
下载: 192
查看: 1091

Linux/Unix编程 用char *malloc(unsigned size)函数向系统申请一次内存空间(如size=1000

用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) 模拟UNIX ...
https://www.eeworm.com/dl/619/249445.html
下载: 27
查看: 1081

数据结构 #include<malloc.h> #include<limits.h> #include<stdio.h> #include<graphics.h&

#include<malloc.h> #include<limits.h> #include<stdio.h> #include<graphics.h> #include<io.h> #include<math.h> #include<process.h> #include<conio.h> #define m 100 #define OK 1 typedef int Status typedef char TElemType /*树元素的类型*/ int t=35 int n=20 int h=14 int u=2 int leaf=0,non_l_leaf=0,non ...
https://www.eeworm.com/dl/654/289829.html
下载: 74
查看: 1136

其他 一些基本函数的程序源代码:包括(1)malloc函数(2)free函数(3)realloc函数(4)calloc函数 (5)学生数据库的编写(6)通讯录 以上都包含c语言源码

一些基本函数的程序源代码:包括(1)malloc函数(2)free函数(3)realloc函数(4)calloc函数 (5)学生数据库的编写(6)通讯录 以上都包含c语言源码,obj文件及应用程序
https://www.eeworm.com/dl/534/339039.html
下载: 154
查看: 1077

单片机开发 单片机动态内存分配代码,实现malloc.

单片机动态内存分配代码,实现malloc.
https://www.eeworm.com/dl/648/361537.html
下载: 32
查看: 1376

其他 了解malloc 和 free的内部实现

了解malloc 和 free的内部实现
https://www.eeworm.com/dl/534/366624.html
下载: 116
查看: 1020

其他 //顺序表的建立、查找、插入与删除 #include <stdio.h> #include <malloc.h> #include <stdlib.h> #

//顺序表的建立、查找、插入与删除 #include <stdio.h> #include <malloc.h> #include <stdlib.h> #define ListSize 100 //表最大长度 //结构定义 typedef struct SeqList { int node[ListSize] //存放表结点 int length //当前表长度 } SeqList //插入元素 insertList(SeqList *list, int e) { int i=list->length-1 ...
https://www.eeworm.com/dl/534/390208.html
下载: 140
查看: 1037