虫虫首页| 资源下载| 资源专辑| 精品软件
登录| 注册

<b>2016</b>年营销计划

  • 在了解实时嵌入式操作系统内存管理机制的特点以及实时处理对内存管理需求的基础上

    在了解实时嵌入式操作系统内存管理机制的特点以及实时处理对内存管理需求的基础上,练习并掌握有效处理内存碎片的内存管理机制,同时理解防止内存泄漏问题的良好设计方法。使用预先规划的思想,构建自己的私有内存管理机制,在系统内存池中申请内存,并将其纳入私有内存管理机制中,形成静态预分配内存池; 静态预分配内存池支持一种以上固定长度内存池,如16 字节内存池和256 字节内存池。固定长度内存池的单块长度应考虑体系结构开销,并尽量减少内部碎片;固定长度内存池数量应可配置; 静态预分配内存池与系统内存池的统一管理机制。向用户分配内存时应保证长度最佳匹配原则。当申请内存的长度超过静态预分配长度或资源不足时,自动向系统内存池申请; 管理机制包括: a) 初 始化函数; b) 内 存申请/释放函数。并特别要保证释放安全; c) 告 警机制; d) 管 理监视机制。 5. 利用可能的互斥机制或代码可重入设计,保证以上管理机制的操作安全性; 6. 创建多Task 环境测试及演示以上内容

    标签: 内存管理 实时嵌入式 实时处理 操作系统

    上传时间: 2016-04-12

    上传用户:lizhen9880

  • 编程题(15_01.c) 结构 struct student { long num char name[20] int score struct student *

    编程题(15_01.c) 结构 struct student { long num char name[20] int score struct student *next } 链表练习: (1).编写函数struct student * creat(int n),创建一个按学号升序排列的新链表,每个链表中的结点中 的学号、成绩由键盘输入,一共n个节点。 (2).编写函数void print(struct student *head),输出链表,格式每行一个结点,包括学号,姓名,分数。 (3).编写函数struct student * merge(struct student *a,struct student *b), 将已知的a,b两个链表 按学号升序合并,若学号相同则保留成绩高的结点。 (4).编写函数struct student * del(struct student *a,struct student *b),从a链表中删除b链表中有 相同学号的那些结点。 (5).编写main函数,调用函数creat建立2个链表a,b,用print输出俩个链表;调用函数merge升序合并2个 链表,并输出结果;调用函数del实现a-b,并输出结果。 a: 20304,xxxx,75, 20311,yyyy,89 20303,zzzz,62 20307,aaaa,87 20320,bbbb,79 b: 20302,dddd,65 20301,cccc,99 20311,yyyy,87 20323,kkkk,88 20307,aaaa,92 20322,pppp,83

    标签: student struct score long

    上传时间: 2016-04-13

    上传用户:zxc23456789

  • 本书是托马斯·弗里德曼用了4年时间写成的一本重点论述“全球化”的专著。此书的论点是:全球化不只是一种现象

    本书是托马斯·弗里德曼用了4年时间写成的一本重点论述“全球化”的专著。此书的论点是:全球化不只是一种现象,也不只是一种短暂的趋势。

    标签:

    上传时间: 2016-04-13

    上传用户:wang5829

  • 某旅馆有n个等级的房间

    某旅馆有n个等级的房间,第i等级有a个房间,每个等级有b个床位(1<=i<=n). 模拟旅馆个管理系统中床位的分配和回收功能,设计能为单个旅客分配床位,在其离店便回收床位(供下次分配)的算法

    标签: 房间

    上传时间: 2016-04-14

    上传用户:VRMMO

  • C#打造操作系统任务计划

    C#打造操作系统任务计划,能够手动定制任务计划,执行指定的作业等,如存储过程

    标签: 操作系统

    上传时间: 2016-04-14

    上传用户:shus521

  • 提出了利用FPGA的现场可编程以及可并行处理的特性

    提出了利用FPGA的现场可编程以及可并行处理的特性,对基于人工神经网络的图像处理结构进行自动生成的一种技术。作者:Andre B. Soares, Altamiro A. Susin,Leticia V. Guimaraes

    标签: FPGA 现场可编程 并行处理

    上传时间: 2016-04-14

    上传用户:gxf2016

  • Swfdec still is development software, but has also followed a rigid no-crashes-allowed policy. I b

    Swfdec still is development software, but has also followed a rigid no-crashes-allowed policy. I believe it s stable enough now to be installed as a default plugin for people that can live with occasional crashes of their browser. But don t blame me if it does crash. File a bug at https://bugs.freedesktop.org/enter_bug.cgi?product=swfdec

    标签: no-crashes-allowed development followed software

    上传时间: 2016-04-14

    上传用户:franktu

  • <计算机网络管理系统设计与应用>本书是专门讲解计算机网络管理系统的再版著作。自1997年完成本书首版至今

    <计算机网络管理系统设计与应用>本书是专门讲解计算机网络管理系统的再版著作。自1997年完成本书首版至今,网络技术有了很大的飞跃,网络应用更加深入社会的每一个角落,网络管理技术也得到很快的发展。

    标签: 1997 计算机网络 管理系统 lt

    上传时间: 2016-04-15

    上传用户:zhangyigenius

  • 1) Write a function reverse(A) which takes a matrix A of arbitrary dimensions as input and returns a

    1) Write a function reverse(A) which takes a matrix A of arbitrary dimensions as input and returns a matrix B consisting of the columns of A in reverse order. Thus for example, if A = 1 2 3 then B = 3 2 1 4 5 6 6 5 4 7 8 9 9 8 7 Write a main program to call reverse(A) for the matrix A = magic(5). Print to the screen both A and reverse(A). 2) Write a program which accepts an input k from the keyboard, and which prints out the smallest fibonacci number that is at least as large as k. The program should also print out its position in the fibonacci sequence. Here is a sample of input and output: Enter k>0: 100 144 is the smallest fibonacci number greater than or equal to 100. It is the 12th fibonacci number.

    标签: dimensions arbitrary function reverse

    上传时间: 2016-04-16

    上传用户:waitingfy

  • 2007年中国移动数据部讲话

    2007年中国移动数据部讲话

    标签: 2007 中国移动 数据

    上传时间: 2016-04-16

    上传用户:ayfeixiao