大约有 3,800 项符合查询结果(耗时:0.0130秒) [XML]

https://www.tsingfun.com/ilife/tech/586.html 

那些曾被追捧的90后创业男神女神,还好吗? - 资讯 - 清泛网 - 专注C/C++及内核技术

...式。 看起来好炫酷,小弟也研究了一下这个功能到底是怎么个原理。来看看被捧上天的云视链到底是什么高科技。 经过试用发现,原来所谓的云视链是在视频区域内加文字标签,可以理解为标签式的弹幕,可以在有限的视频...
https://stackoverflow.com/ques... 

How do I find which program is using port 80 in Windows? [duplicate]

... a Windows program that will show you detailed listings of all TCP and UDP endpoints on your system, including the local and remote addresses and state of TCP connections. On Windows Server 2008, Vista, and XP, TCPView also reports the name of the process that owns the endpoint. TCPV...
https://www.tsingfun.com/it/cpp/2214.html 

服务器保持大量TIME_WAIT和CLOSE_WAIT的解决方法 - C/C++ - 清泛网 - 专注C/C++及内核技术

...内核参数优化的话)上经常会遇到这个问题,这个问题是怎么产生的呢? 从 上面的示意图可以看得出来,TIME_WAIT是主动关闭连接的一方保持的状态,对于爬虫服务器来说他本身就是“客户端”,在完成一个爬取任务之后,他就...
https://www.tsingfun.com/it/cp... 

内存管理内幕:动态分配的选择、折衷和实现 - C/C++ - 清泛网 - 专注C/C++及内核技术

...放 obstack 的全部内容。可以用其他的值,但是它们通常不怎么实用。 使用池式内存分配的益处如下所示: 应用程序可以简单地管理内存。 内存分配和回收更快,因为每次都是在一个池中完成的。分配可以在 O(1) 时间内完成...
https://www.tsingfun.com/it/cpp/1385.html 

高并发服务端分布式系统设计概要 - C/C++ - 清泛网 - 专注C/C++及内核技术

...group的基本轮廓: 一个group提供对外的接口(废话否则怎么存取数据),group的底层可以是实际的File System,甚至是HDFS。Group Master和Group Slave可以共享同一个File System(用于不能丢数据的强一致性系统),也可以分别指向不同的...
https://stackoverflow.com/ques... 

How exactly does __attribute__((constructor)) work?

...eader. But it can also receive 'configuration information' at runtime over udp. The udp is handled by a thread which MUST be started at init time. __attribute__((constructor)) static void startUdpReceiveThread (void) { pthread_create( &tid_udpthread, NULL, __feigh_udp_receive_loop, NULL )...
https://www.tsingfun.com/it/cpp/656.html 

Win32汇编--使用MASM - C/C++ - 清泛网 - 专注C/C++及内核技术

...>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> end start 怎么样,看来和上面的C以及DOS汇编又不同了吧!但从include, .data和.code等语句,顾名思义,也能看出一点苗头来,include应该就是包含别的文件,.data想必是数据段,.code应...
https://www.tsingfun.com/it/cpp/708.html 

汇编语言超浓缩教程(汇编入门必备) - C/C++ - 清泛网 - 专注C/C++及内核技术

...去脉,也就是搞清电脑每个组成部分究竟在干什么、究竟怎么干?一个真正的硬件发烧友,不懂这些可不行。三、如今玩DOS的多是“高手”,如能像吾一样混入(我不是高手)“高手”内部,不仅可以从“高手”朋友那儿套些黑...
https://www.tsingfun.com/it/da... 

Oracle 11.2.0.4 RAC FOR redhat 6.4 - 数据库(内核) - 清泛网 - 专注C/C++及内核技术

... 再次创建RAID 自动 当发生问题的时候有冗余 不管怎么设置 3块硬盘只能设置成RAID 1 还有一块不能用 ,太TM的坑爹了 查看阵列卡的配置 我X 缓存0M 你奶奶的配置什么3块硬盘啊,你这么搞IBM造吗? 物尽其用 第三...
https://stackoverflow.com/ques... 

Simulate delayed and dropped packets on Linux

I would like to simulate packet delay and loss for UDP and TCP on Linux to measure the performance of an application. Is there a simple way to do this? ...