- 博客(4)
- 收藏
- 关注
转载 select epoll的详解
(一)首先,介绍几种常见的I/O模型及其区别,如下:blocking I/Ononblocking I/OI/O multiplexing (select and poll)signal driven I/O (SIGIO)asynchronous I/O (the POSIX aio_functions)—————异步IO模型最大的特点是 完成后发回通知。阻塞与否,取决于实现IO交换...
2019-04-11 11:05:45 362
原创 Linux 系统强制设置igmp版本号(动态改变IGMP版本号)
echo 2 > /proc/sys/net/ipv4/conf/all/force_igmp_versionecho 2 > /proc/sys/net/ipv4/conf/default/force_igmp_versionecho 2 > /proc/sys/net/ipv4/conf/eth0/force_igmp_versionecho 2 > /proc/...
2019-03-27 11:24:11 3922
转载 Linux 系统/proc/sys/vm writting cache配置
通过修改proc系统的drop_caches清理free的cache$echo 3 > /proc/sys/vm/drop_cachesdrop_caches的详细文档如下:Writing to this will cause the kernel to drop clean caches, dentries and inodes from memory, causing that m...
2018-12-13 17:24:48 339
转载 C语言 strlen 和sizeof 区分
一、sizeofsizeof(…)是运算符,在头文件中typedef为unsigned int,其值在编译时即计算好了,参数可以是数组、指针、类型、对象、函数等。它的功能是:获得保证能容纳实现所建立的最大对象的字节大小。由于在编译时计算,因此sizeof不能用来返回动态分配的内存空间的大小。实际上,用sizeof来返回类型以及静态分配的对象、结构或数组所占的空间,返回值跟对象、结构、数组所存...
2018-12-12 17:39:45 171
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人