Where can I browse the sourcecode for libc online (like doxygen) [closed]

一曲冷凌霜 提交于 2019-11-28 21:00:21

问题


Sometimes I want to look up the implementations of functions in the stdlib, I've downloaded the sourcecode, but it's quite messy.

Just greping is not really suitable because of the many hits.

Does anyone know a webpage doxygen style that has the documentation.

The same goes for the linux kernel.

Thanks


回答1:


How about this for libc documentation? And perhaps this for the kernel? There is also Google Code search; here is an example search.

More on Google Code Search You can enter search queries like this: package:linux-2.6 malloc for any references to malloc in the linux-2.6 kernel.

Edit: Google Code search is now shut down. But you can access the git repo at http://git.kernel.org/?p=linux/kernel/git/torvalds/linux-2.6.git and it has search as well.




回答2:


You should check if your distribution is using the vanilla GLIBC or the EGLIBC fork (Debian and Ubuntu have switched to EGLIBC EDIT: they switched back around 2014).

Anyway, the repository browser for GLIBC is at http://sourceware.org/git/?p=glibc.git

http://code.woboq.org/userspace/glibc/, posted by @guruz below, is a good alternative.

The source is a bit complicated by the presence of multiple versions of the same files.




回答3:


You can try http://code.woboq.org/userspace/glibc/

It has nice navigation/hilighting similar to an IDE.




回答4:


To help navigate the source to glibc, perhaps try something like ctags or cscope?

Note: I get dumber every time I look at the glibc source, so please be careful! :)




回答5:


If you are using GNU C (glibc), the functions (beyond the GNU extensions) follow the POSIX standard as far as their arguments, implementation, failure and return values. If you want to peek under the hood of static members, you'll have to look at the code.

Every push (that I can remember) to try and adopt something like Doxygen for glibc was rejected for the following reasons:

  1. Redundant, POSIX already documents almost everything thats exposed, as well as man and info pages.
  2. Too much work initially
  3. More work for maintainers

As far as the kernel goes, Linux does use a system very similar to Doxygen called Kerneldoc.




回答6:


You can also get actual Doxygen-generated docs from http://fossies.org/dox/glibc.



来源:https://stackoverflow.com/questions/1978517/where-can-i-browse-the-sourcecode-for-libc-online-like-doxygen

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!