自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(18)
  • 资源 (12)
  • 收藏
  • 关注

转载 Linux 环境进程间通信(六)

 From:http://www.ibm.com/developerworks/cn/linux/l-ipc/part6/index.html 套接口

2007-12-21 03:24:00 610

转载 Linux环境进程间通信(五): 共享内存(下)

From:http://www.ibm.com/developerworks/cn/linux/l-ipc/part5/index2.html级别: 初级郑彦兴 ([email protected]), 国防科大攻读博士学位2003 年 5 月 01 日在 共享内存(上)中,主要围绕着系统调用mmap()进行讨论的,本部分将讨论系统V共享内存,并通过实验结果对比来阐述两者的异同。系统

2007-12-21 03:23:00 618

转载 Linux环境进程间通信(五): 共享内存(上)

From:http://www.ibm.com/developerworks/cn/linux/l-ipc/part5/index1.html级别: 初级郑彦兴 ([email protected]), 国防科大攻读博士学位2003 年 5 月 01 日共 享内存可以说是最有用的进程间通信方式,也是最快的IPC形式。两个不同进程A、B共享内存的意思是,同一块物理内存被映射到进程A、B

2007-12-21 03:22:00 646

转载 Linux环境进程间通信(一)

From:http://www.ibm.com/developerworks/cn/linux/l-ipc/part1/index.html 管道及有名管道

2007-12-21 03:20:00 683

转载 Linux环境进程间通信(二): 信号(下)

From:http://www.ibm.com/developerworks/cn/linux/l-ipc/part2/index2.html级别: 初级郑彦兴 ([email protected])国防科大2003 年 1 月 01 日在 信号(上)中,讨论了linux信号种类、来源、如何安装一个信号以及对信号集的操作。本部分则首先讨论从信号的生命周期上认识信号,或者宏观上看似简单

2007-12-21 03:17:00 627

转载 Linux环境进程间通信(二): 信号(上)

From:http://www.ibm.com/developerworks/cn/linux/l-ipc/part2/index1.html级别: 初级郑彦兴 ([email protected])国防科大2003 年 1 月 01 日linux信号机制远远比想象的复杂,本文力争用最短的篇幅,对该机制做了深入细致的分析。读者可以先读一下信号应用实例(在信号(下)中),这样可以对信号

2007-12-21 03:16:00 744

转载 Linux环境进程间通信(三)

From:http://www.ibm.com/developerworks/cn/linux/l-ipc/part3/index.html 消息队列

2007-12-21 03:12:00 749

转载 Linux环境进程间通信(四)

From:http://www.ibm.com/developerworks/cn/linux/l-ipc/part4/index.html Linux环境进程间通信(四) 信号灯

2007-12-21 03:11:00 667

转载 sprintf你知道多少

From:http://www.chinaitpower.com/2005September/2005-09-13/205108.html选自《CSDN 社区电子杂志——C/C++杂志》在将各种类型的数据构造成字符串时,sprintf 的强大功能很少会让你失望。由于sprintf 跟printf 在用法上几乎一样,只是打印的目的地不同而已,前者打印到字符串中,后者则直接在命令行上输

2007-12-14 02:27:00 597

转载 bzero

From:http://www.ggv.com.cn/forum/clib/string/bzero.html原型:extern void bzero(void *s, int n); 用法:#include 功能:置字节字符串s的前n个字节为零。 说明:bzero无返回值。 举例: // bzero.c #include #inc

2007-12-14 02:25:00 1284

转载 Linux网络编程一步一步学-自己编写一个HTTP协议的目录浏览和文件下载服务器

From:http://www.chinaunix.net/jh/23/892147.html服务器源代码如下: #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #inclu

2007-12-14 01:11:00 811

原创 Linux and Windows snprintf区别

今天使用snprintf函数时想到了:     strcpy, strncpy    strcmp, strncmp    strcat, strncat    sprintf, snprintf最喜欢用的就是snprintf, 因为它会自动在后面加/0. 在网上看了一下. 原来VC中_snprintf不是这样的.VC中的_snprintf函数并没有按照这样的规定来做,它在输出缓冲区不够大时就

2007-12-13 10:55:00 1471

转载 谈谈snprintf

From:http://www.cppblog.com/sandy/archive/2006/09/29/13133.html众所周知,sprintf不能检查目标字符串的长度,可能造成众多安全问题,所以都会推荐使用snprintf.snprintf(_snprintf)的声明是这样的int _snprintf(   char *buffer,   size_t count,   const c

2007-12-13 10:24:00 1069

转载 FORK()函数的两次返回的具体情况

FORK()函数的两次返回的具体情况对于fork来说,父子进程共享同一段代码空间,所以给人的感觉好像是有两次返回,其实对于调用 fork的父进程来说,如果fork出来的子进程没有得到调度,那么父进程从fork系统调用返回,同时分析sys_fork知道,fork返回的是子进 程的id。再看fork出来的子进程,由copy_process函数可以看出,子进程的返回地址为ret_from_fork(

2007-12-09 02:35:00 1981

转载 正则表达式30分钟入门教程

 From:http://www.shubulo.com/viewthread.php?tid=32802 版本:v2.21 (2007-8-3) 作者:deerchao 来源:unibetter大学生社区 转载请注明来源目录 本文目标 如何使用本教程 正则表达式到底是什么? 入门 测试正则表达式 元字符

2007-12-04 02:58:00 622

转载 Personal Fedora 8 Installation Guide

Mauriat Miranda (http://www.mjmwired.net/contact/)Other Guides/ResourcesPublished: 7 November 2007 (updated: 16 November 2007)Post To: del.icio.us, furl, digg, spurl, gmail this, Blog this

2007-12-03 14:37:00 1063

转载 Personal Fedora Core 6 Installation Guide

Mauriat Miranda (http://www.mjmwired.net/contact/)Other Guides/ResourcesPublished: 11 October 2006 (updated: 31 May 2007)Post To: del.icio.us, furl, digg, spurl, gmail this, Blog this _u

2007-12-03 14:35:00 1164

转载 Personal Fedora 7 Installation Guide

Mauriat Miranda (http://www.mjmwired.net/contact/)Other Guides/ResourcesPublished: 30 May 2007 (updated: 29 October 2007)Post To: del.icio.us, furl, digg, spurl, gmail this, Blog this _u

2007-12-03 14:34:00 1468

GNU Emacs Manual Sixteenth Edition, Updated for Emacs Version 22.1

GNU Emacs Manual Sixteenth Edition, Updated for Emacs Version 22.1

2010-01-31

Mastering Unix Shell Scripting

  Provides readers with end-to-end shell scripts that can be used to automate repetitive tasks and solve real-world system administration problems   Targets the specific command structure for four popular UNIX systems: Solaris, Linux, AIX, and HP-UX   Illustrates dozens of example tasks, presenting the proper command syntax and analyzing the performance gain or loss usi...

2009-06-03

C++ GUI Programming with Qt 4

C++ GUI Programming with Qt 4 By Jasmin Blanchette, Mark Summerfield ............................................... Publisher: Prentice Hall Pub Date: June 21, 2006 Print ISBN-10: 0-13-187249-4 Print ISBN-13: 978-0-13-187249-3 Pages: 560

2009-03-18

learning.python.2nd.edition

  Portable, powerful, and a breeze to use, Python is ideal for both standalone programs and scripting applications. With this hands-on book, you can master the fundamentals of the core Python language quickly and efficiently, whether you're new to programming or just new to Python. Once you finish, you will know enough about the language to use it in any application domain you choose.<br /> <br /> <em>Learning Python</em> is based on material from author Mark Lutz's popular training courses, which he's taught over the past decade. Each chapter is a self-contained lesson that helps you thoroughly understand a key component of Python before you continue. Along with plenty of annotated examples, illustrations, and chapter summaries, every chapter also contains Brain Builder, a unique section with practical exercises and review quizzes that let you practice new skills and test your understanding as you go.<br /> <br /> This book covers: <br>   <br>  Types and Operations -- Python's major built-in object types in depth: numbers, lists, dictionaries, and more<br /> <br /> <br>  Statements and Syntax -- the code you type to create and process objects in Python, along with Python's general syntax model<br /> <br /> <br>  Functions -- Python's basic procedural tool for structuring and reusing code<br /> <br /> <br>  Modules -- packages of statements, functions, and other tools organized into larger components<br /> <br /> <br>  Classes and OOP -- Python's optional object-oriented programming tool for structuring code for customization and reuse<br /> <br /> <br>  Exceptions and Tools -- exception handling model and statements, plus a look at development tools for writing larger programs <em>Learning Python</em> gives you a deep and complete understanding of the language that will help you comprehend any application-level examples of Python that you later encounter. If you're ready to discover what Google and YouTube see in Python, this book is the best way to get started.

2008-06-11

QT程序设计

Qt是Linux系统中最流行的开发工具之一,它是开发X Window系统下应用程序的利器。本书全面地介绍了Troll Tech公司基于C++的CUI开发工具——Qt。不仅介绍了如何编写X Window系统下的应用程序,还详细描述了Qt的开发环境、编程方法、关键技术和编程实例。最后,介绍了如何应用KDE本身提供的接口进行X Window系统编程。本书由中国第一家专业化的Linux发行商(中国)软件技术有限公司编写,适合初、中级程序员以及广大计算机编程的爱好者阅读。

2008-05-27

The C Programming Language第二版中文版

The C Programming Language第二版中文版

2008-05-27

GCC 中文手册

Linux系统下的Gcc(GNU C Compiler)是GNU推出的功能强大、性能优越的多平台编译器,是GNU的代表作品之一。gcc是可以在多种硬体平台上编译出可执行程序的超级编译器,其执行效率与一般的编译器相比平均效率要高20%~30%。

2008-05-27

LINUX与UNIX SHELL编程指南(1-20章)

LINUX与UNIX SHELL编程指南(1-20章)

2008-05-25

sed与awk(第二版)

sed与awk(第二版)

2008-05-25

《LINUX与UNIX SHELL编程指南》读书笔记-二次发布版

《LINUX与UNIX SHELL编程指南》读书笔记-二次发布版

2008-05-25

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除