文件: kernel-api.rar 大小: 1999KB 下载: 下载 The linux Kernel api -------------------------------------------------------------------------------- The linux Kernel api This documentation is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) an...
索引:1. 字节序函数 2. 字节操作函数 3. 地址转换函数 4. readn、writen和readline 5. 测试描述符类型 6. socket函数 7. connect函数 8. bind函数 9. listen函数 10. accept函数 11. close函数 12. getsockname和getpeername 13. select函数 14. shutdown函数 15. pselect函数 16. poll函数 17. getsockopt和setsockopt 18. 套接口选项列表 19. 处理套接口的fcntl函数 20. gethostbyname函数 21. gethostbyname2函数 22. ethostby...
文件:kernel-api.pdf 大小:225KB 下载: 下载 本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u1/54642/showart_1663456.html
http://www.gelato.unsw.edu.au/~dsw/public-files/kernel-docs/kernel-api/
基于内核版本2.6.16.14. 写于(美国)东部时区 2006年05月05日 22点49分 . 下层串行api -------------------- $Id: driver,v 1.10 2002/07/22 15:27:30 rmk Exp $ 本文简要介绍了新的串行驱动的某些方面。这并不完整,有任何问题请联系 在serial_amba.c可以找到所涉及的实现部分。 下层串行硬件驱动 -------------------------------- 下层串行硬件驱动主要为核心串行驱动提供端口信息(在uart_port中定义的)和一组控制方...
linux Interrupt api =================== Russell King The linux Interrupt api provides a flexible mechanism to handle and control interrupts within the kernel. The design requirements for this api are: - must have as little overhead as possible for commodity hardware - must be easy and obvious to use - must allow complex multi-level interrupt implementations to exist transparentl...
本帖最后由 shellmic 于 2011-08-12 07:08 编辑 碰到一个问题,需要在用户态下动态创建一个段(segment)。具体的说,该段所对应的描述符是LDT/GDT里的一个描述符,即需要在LDT/GDT里动态创建一个新的描述符,且可通过ds,es等作为其选择子的值。听说在类UNIX下有一些api可以实现这个功能。是这样吗?