摘要: (1)当fork子进程时,必须捕获SIGCHLD信号; Signal(SIGCHLD, sig_chld); /* must call waitpid() */ (2)当捕获信号时,必须处理被中断的系统调用; struct sigaction act, oact; act.sa_handler = 阅读全文
posted @ 2016-08-28 22:22 hgrical_小农 阅读(133) 评论(0) 推荐(0) 编辑
摘要: 将低序字节存储在内存的起始地址,这称为小端字节序。 将高序字节存储在内存的起始地址,这称为大端字节序。 检查大小端字节序的简单代码如下: intmain(int argc, char **argv){ union { short s; char c[sizeof(short)]; } un; un. 阅读全文
posted @ 2016-08-28 00:14 hgrical_小农 阅读(217) 评论(0) 推荐(0) 编辑