<outline type="rss" title="DogEye www.DogEye.Net" text="DogEye www.DogEye.Net" htmlUrl="http://www.dogeye.net" xmlUrl="http://www.dogeye.net/feed/"/>
<outline type="rss" title="Beyond the Void" text=&quo…… 阅读全文
目前的 rss 订阅源
Reply
<outline type="rss" title="DogEye www.DogEye.Net" text="DogEye www.DogEye.Net" htmlUrl="http://www.dogeye.net" xmlUrl="http://www.dogeye.net/feed/"/>
<outline type="rss" title="Beyond the Void" text=&quo…… 阅读全文
以前一直担心在多线程环境下,多个线程同时调用 fprintf 往同一个 fp 写东西会不会出现交错的情况,昨天微博上问了问人,有提到 fprintf_unlocked,也说到 fprintf 是线程安全的,后来又查了一下,看到这里,http://stackoverflow.com/quest… ,其中也有提到,fprintf 在多线程下是内部持有锁的
If you’re …… 阅读全文
之所以有这个问题,是因为有一个机器在刷了 BIOS 之后,间歇的出现蓝屏或者其他看似硬件的问题,目前尚未确定是真的硬件问题还是驱动问题抑或是刷 BIOS 造成的,对于这个问题,直接去 google 问题还是比较难找到答案的,但是在这里,http://en.wikipedia.org/wiki/B… ,有提到相关的一些说明:
The BIOS addition…… 阅读全文
先来看一个非常普通的收发
服务端
#include <stdio.h>
#include <string.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <unistd.h>
#include <arpa/inet.h>
#include <assert.h>
int main() {
int listen_fd = socket(AF_INET, SOCK_DGRAM, …… 阅读全文