+ -
当前位置:首页 → 问答吧 → 如何让子进程等待父进程结束?

如何让子进程等待父进程结束?

时间:2007-06-10

来源:互联网

比如说像printk之类的

作者: ghostheaven   发布时间: 2007-06-10

try the following packages:

代码:
$ apt-cache search "^manpages.*dev"
manpages-dev - Manual pages about using GNU/Linux for development
manpages-de-dev - German development manpages
manpages-fr-dev - French version of the development manual pages
manpages-ja-dev - Japanese version of the manual pages (for developers)
manpages-pl-dev - Polish man pages for developers
manpages-pt-dev - Portuguese Versions of the Manual Pages
manpages-posix-dev - Manual pages about using a POSIX system for development

作者: xport   发布时间: 2007-06-10

这些包都有,但是依然man不到printk

作者: ghostheaven   发布时间: 2007-06-10

xport 写道:
try the following packages:

代码:
$ apt-cache search "^manpages.*dev"
manpages-dev - Manual pages about using GNU/Linux for development
manpages-de-dev - German development manpages
manpages-fr-dev - French version of the development manual pages
manpages-ja-dev - Japanese version of the manual pages (for developers)
manpages-pl-dev - Polish man pages for developers
manpages-pt-dev - Portuguese Versions of the Manual Pages
manpages-posix-dev - Manual pages about using a POSIX system for development





一个应该是E文版本的吧?
后面那些看都看不懂的语言似乎可以不用下



请问下了之后怎么使用?

作者: 枫林   发布时间: 2007-06-11

manpages-dev
而已,还有dev-help

代码:
PRINTF(1)                                    FSF                                   PRINTF(1)

NAME
       printf - 格式化并显示数据

总览 (SYNOPSIS)
       printf FORMAT [ARGUMENT]...
       printf OPTION

描述 (DESCRIPTION)
       根据 FORMAT 显示 ARGUMENT(s) .

作者: eexpress   发布时间: 2007-06-12

去内核的头文件里找呀

作者: Xtire   发布时间: 2007-06-12

sudo apt-get install manpages-dev devhelp。都安装成功了,还是不可以man 到printk。

作者: boluor   发布时间: 2009-03-05

内核里的函数因为经常变化,似乎在一般的man里没有的。好像是要直接看内核源码的。

作者: lerosua   发布时间: 2009-03-05

上这个网址http://packages.debian.org/lenny/linux-manual-2.6.26
就可以了

作者: guan123long   发布时间: 2009-08-18

内核还拥有大量从代码自动生成的文档。它包含内核内部API的全面介绍以及如何
妥善处理加锁的规则。生成的文档会放在 Documentation/DocBook/目录下。在内
核源码的主目录中使用以下不同命令将会分别生成PDF、Postscript、HTML和手册
页等不同格式的文档:
make pdfdocs
make psdocs
make htmldocs
make mandocs

-------
摘自源码的
Documentation/zh_CN/HOWTO

作者: wenjianhn   发布时间: 2011-03-28