
底层
文章平均质量分 68
laodaliubei
这个作者很懒,什么都没留下…
展开
-
SourceInsight 使用笔记
@tpc原创 2018-11-22 12:22:01 · 641 阅读 · 0 评论 -
统一事件源
信号是一种异步事件,信号处理函数和程序的主循环是两条不同的执行路线.信号处理期间,系统不会再次触发它,hence, 信号处理函数需要尽可能快地执行完毕,避免该信号遭到屏蔽太久.一种典型的方案是: 将信号处理的主要逻辑放在程序主循环当中,当信号处理函数被触发时,只是简单地通知主循环"信号来了,信号值是XXX,请注意查收"; 主循环根据信号值执行目标信号所对应的代码.Generally, Us...原创 2018-12-26 18:19:23 · 197 阅读 · 0 评论 -
http
Contents原创 2018-12-26 18:11:11 · 178 阅读 · 0 评论 -
常用Linux 库函数
Contents<unistd.h>In the C and C++ programming languages, unistd.h is the name of the header file that provides access to the POSIX operating system API.原创 2018-12-06 18:39:37 · 256 阅读 · 0 评论 -
负载均衡全面探究
Contents原创 2018-11-28 18:59:56 · 158 阅读 · 0 评论 -
0 server
Contentsk原创 2018-11-28 18:46:57 · 144 阅读 · 0 评论 -
SoftwareEngineering 软件工程重要概念
Contents原创 2018-12-02 12:02:38 · 277 阅读 · 0 评论 -
Linux编程
Contentsfunctions库函数&系统调用functions库函数&系统调用函数库提供的函数通常是不需要操作系统的服务,函数是在用户空间内执行的,除非函数涉及到I/O操作等,一般是不会切到核心态的。系统调用是要求操作系统为用户提供进程,提供某种服务,通常是涉及系统的硬件资源和一些敏感的软件资源等。系统 调用的执行效率大多要比函数高,尤其是处理输入输出的函数. 当...原创 2018-11-25 12:09:28 · 143 阅读 · 0 评论 -
linux server服务器相关
Contentsreferencesreferences原创 2018-11-23 11:29:35 · 124 阅读 · 0 评论 -
xml&json
ContentsWhat’s XML?From Wikipedia:Extensible Markup Language (XML) is a markup language that defines a set of rules for encoding documents in a format that is both human-readable and machine-read...原创 2018-12-26 18:22:24 · 163 阅读 · 0 评论