ChinaUnix.net
相关文章推荐:

bsd style

一篇讲解如何在LFS中使用bsd初始化风格,一般linux发行版中都是使用 SysV初始化风格,如RedHat,Mandrake,LFS...etc. Slackware使用bsd风格。 Debian也有自己的初始化风格,感觉有点象bsd. :) 这篇文章应该会让你了解bsd初始化风格的思想,对从加载内核到login之间 系统如何初始化也会有所了解,虽然是LFS的,但其他发行版初始化系统也都大致相同。 也正因为是LFS的,所以比较简洁明了(看MDK的rc.sysinit有点头晕 ) Setting up...

by 蓝色沉默 - Linux文档专区 - 2005-03-03 02:47:49 阅读(1090) 回复(0)

相关讨论

AUTHOR: Leslie Polzer AUTHOR: Marc Heerdink DATE: 2005-01-08 LICENSE: GNU Free Documentation License Version 1.2 SYNOPSIS: Setting up LFS with bsd/Slackware style init. DESCRIPTION: The bsd style is often perceived as a more simple (in contrast to SysVInit) way of booting your system and controlling runlevels. PREREQUISITES: LFS 2.4 or higher. HINT: Contents -------- 1 Preface 2 Preparations ...

by zsfly - Linux文档专区 - 2008-01-24 13:39:16 阅读(901) 回复(0)

开源,一个时髦的话题,混计算机的, 不提开源您都不好意思跟人打招呼。 这是去年我做的一个开源小项目,非常简单了,今天拿出来放在blog上吧,如果喜您欢,请评论之。 http://ksocket.sourceforge.net/ Ksocket is a linux 2.6 kernel module that provides bsd-style socket interfaces (namely socket, bind, listen, connect, accept, ...) for kernel developers to facilitate their network progaramming in linux k...

by s_x_g - Linux文档专区 - 2008-03-29 13:54:35 阅读(949) 回复(0)

原文出处:http://www.freebsd.org/doc/en_US.ISO8859-1/articles/bsdl-gpl/article.html Why you should use a bsd style license for your Open Source Project Bruce Montague <[email]brucem@alumni.cse.ucsc.edu[/email]> $Freebsd: doc/en_US.ISO8859-1/articles/bsdl-gpl/article.sgml,v 1.5 2006/10/16 12:35:23 keramida Exp $ Freebsd is a registered trademark of the Freebsd Foundation. CVSup is...

by 雨丝风片 - BSD - 2006-10-20 19:39:00 阅读(2338) 回复(6)

1.概述
       当你创建自定义组件的时候,有可能你想创建一个style属性定义样式。
       [style]元标签格式如下
                     [style(name="style_name"[,property="value",...])]
下面的表格描...

by sinkingboat - Web开发 - 2011-12-22 08:54:27 阅读(1065) 回复(0)
by 高傲的活着 - Web开发 - 2011-12-20 09:48:39 阅读(470) 回复(0)

http://google-styleguide.googlecode.com/svn/trunk/cppguide.xml

by fender0107401 - C/C++ - 2011-03-09 17:33:33 阅读(2291) 回复(4)

C++风格的cast const_cast 这个最简单, 去掉const或volatile限定reinterpret_cast 用于: 指针之间指针与整数 将源类型的值的二进制表达重新解释(re-interpret)为目的类型的值。 类似于:[code] S src; D dst = *(D*)&src; [/code]嗯, 其实我也没接触过古怪的指针格式, 所以也举不出胡乱使用的坏处…… 但其实很多时候都是不需要的。 static_cast 用于: 隐式转换隐式转换的逆转换[code] T* o = ...; void* p = o; // 隐式转...

by OwnWaterloo - C/C++ - 2011-01-29 18:22:45 阅读(3683) 回复(6)

kernel/scripts/Lindent is a elegant tool to tidy up code into Linux kernel style. Linux kernel coding style This is a short document describing the preferred coding style for the linux kernel. Coding style is very personal, and I won't _force_ my views on anybody, but this is what goes for anything that I have to be able to maintain, and I'd prefer it for most other things too. Please at...

by edwinrong - Linux文档专区 - 2009-08-04 21:17:50 阅读(664) 回复(0)