Chinaunix首页 | 论坛 | 博客
  • 博客访问: 574830
  • 博文数量: 353
  • 博客积分: 1104
  • 博客等级: 少尉
  • 技术积分: 1457
  • 用 户 组: 普通用户
  • 注册时间: 2008-12-23 23:02
个人简介

1、刚工作时做Linux 流控;后来做安全操作系统;再后来做操作系统加固;现在做TCP 加速。唉!没离开过类Unix!!!但是水平有限。。

文章存档

2015年(80)

2013年(4)

2012年(90)

2011年(177)

2010年(1)

2009年(1)

发布时间: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 ).........【阅读全文】

阅读(671) | 评论(0) | 转发(0)

发布时间:2013-01-19 12:30:00

full path, abs path, 文件的绝对路径, solaris, sparc......【阅读全文】

阅读(1264) | 评论(1) | 转发(0)

发布时间: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......【阅读全文】

阅读(1787) | 评论(0) | 转发(0)

发布时间: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; ......【阅读全文】

阅读(1333) | 评论(0) | 转发(0)
给主人留下些什么吧!~~
留言热议
请登录后留言。

登录 注册