码迷,mamicode.com
首页 >  
搜索关键字:buddy    ( 58个结果
Easier Done Than Said?
Problem DescriptionPassword security is a tricky thing. Users prefer simple passwords that are easy to remember (like buddy), but such passwords are o...
分类:其他好文   时间:2014-11-10 13:34:20    阅读次数:189
buddy算法
buddy算法是用来做内存管理的经典算法,目的是为了解决内存的外碎片。避免外碎片的方法有两种:1,利用分页单元把一组非连续的空闲页框映射到非连续的线性地址区间。2,开发适当的技术来记录现存的空闲连续页框块的情况,以尽量避免为满足对小块的请求而把大块的空闲块进行分割。基于下面三种原因,内核选择第二种避...
分类:编程语言   时间:2014-10-16 16:09:42    阅读次数:141
linux_kali google浏览器乱码以及不能以root身份打开解决办法
1、百度找到的解决办法。写在这里方便下次使用。 export LD_LIBRARY_PATH export LC_CTYPE="zh_CN.UTF-8" ? ? #这是解决google浏览器乱码问题 export CHROME_VERSION_EXTRA="stable" # We don‘t want bug-buddy...
分类:系统相关   时间:2014-09-07 02:15:04    阅读次数:391
Linux 2.6 内核阅读笔记 内存管理
2014年7月29日 buddy分配算法 内核需要为分配一组连续的页框提供一种健壮、高效的分配策略。分配连续的页框必须解决内存管理中的外碎片(external fragmentation)。频繁的请求和释放不同大小的一组连续页框,必然导致分配页框的块分算来许多小块的空闲页框无法被一次性大量分配使用。 linux内核采用著名的伙伴系统算法来解决外碎片问题。该算法的核心思想是把所有的空闲页框分成1...
分类:系统相关   时间:2014-07-30 01:04:12    阅读次数:378
Easier Done Than Said? 【杭电-1039】
/* Easier Done Than Said? Problem DescriptionPassword security is a tricky thing. Users prefer simple passwords that are easy to remember (like buddy), but such passwords are often insecure. Some...
分类:其他好文   时间:2014-07-29 14:40:28    阅读次数:288
Easier Done Than Said? 【杭电-1039】 附题
/* Easier Done Than Said? Problem DescriptionPassword security is a tricky thing. Users prefer simple passwords that are easy to remember (like buddy), but such passwords are often insecure. Some...
分类:其他好文   时间:2014-07-29 14:39:48    阅读次数:302
PatentTips - Modified buddy system memory allocation
BACKGROUNDMemory allocation systems assign blocks of memory on request. A memory allocation system employs an allocator to receive relatively large bl...
分类:其他好文   时间:2014-07-07 23:11:50    阅读次数:318
Buddy system伙伴分配器实现
wikipedia:http://en.wikipedia.org/wiki/Buddy_memory_allocationThebuddy memory allocationtechnique is amemory allocationalgorithm that divides memory i...
分类:其他好文   时间:2014-04-28 08:31:27    阅读次数:584
58条   上一页 1 ... 4 5 6
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!