1、刚工作时做Linux 流控;后来做安全操作系统;再后来做操作系统加固;现在做TCP 加速。唉!没离开过类Unix!!!但是水平有限。。
全部博文(353)
发布时间:2013-01-28 09:15:57
//以下是顺序栈的基本操作#include"stdio.h"#include"stdlib.h"#define MAXSIZE 20#define OK1#define ERROR0typedef int Status;typedef int SElemType;typedef struct{SElemType data[MAXSIZE];int top;}SqStack;int main(){return 0;}//初始化一个空栈Status InitStack( SqStack *S ).........【阅读全文】
发布时间:2013-01-19 12:30:00
full path, abs path, 文件的绝对路径, solaris, sparc......【阅读全文】
发布时间:2013-01-07 17:56:43
Linux内存管理 wjcdx@qq.com @仅供学习交流,勿作商业使用 Linux Kernel Code: 2.6.35.7 ULK3: A.1. Prehistoric Age: the BIOS The BIOS uses Real Mode addresses because they are the only ones available when the computer is turned on. A Real Mode address is composed of a seg segment and an off of......【阅读全文】
发布时间:2013-01-04 09:47:37
一道面试题,看谁能答出来,x, y的值是多少?感觉这题出得很有水准,值了!!! 点击(此处)折叠或打开 int b = 0x12345678; int a = 0x9abc0e0d; char *p = (char *) &b; char *q = p + 2; int x = *q; int y = *(int *)q; ......【阅读全文】