发布时间:2013-11-26 14:22:47
The ultimate SO_LINGER page, or: why is my tcp not reliablePosted by bert hubert Sun, 18 Jan 2009 13:03:00 GMTThis post is about an obscure corner of TCP network programming, a corner where almost everybody doesn’t quite get what is going on. I used to think I understood it, but found out last .........【阅读全文】
发布时间:2013-11-25 18:02:22
thread apply all btThere is a thread apply all command in GDB:(gdb) thread apply all btThread 12 (Thread 0x7f7fe2116700 (LWP 5466)):#0 sem_wait () at ../nptl/sysdeps/unix/sysv/linux/x86_64/sem_wait.S:86#1 0x0000000000425358 in ?? ()...Thread 1 (Thread 0x7f7feabc27c0 (LWP 5465).........【阅读全文】
发布时间:2013-11-13 13:58:02
Subject: 如何反汇编核心的某个指定函数(如setup_arch),如何使反汇编中包含源代码的行号?请指教,谢谢 Author: sanford Posted: 2003-07-02 13:36 Length: 0 byte(s)[Original] [Print] [Top][Original] [Print] [Top]Subject: Re: 如何反汇编核心的某个指定函数(如setup_arch),如.........【阅读全文】
发布时间:2013-09-22 09:41:27
2.6.x kernel下内核模块的Makefileby QuickMouse<quickmouse@263.net> 发现自己以前写的2.4的模块无法在2.6下面编译使用了,需要用新的Makefile才行。简单的说就像这个样子:obj-m := mytest.oKDIR := /lib/modules/$(shell uname -r)/buildPWD := $(shell pwd)default:  .........【阅读全文】