Section 2 of the manual describes the Linux system calls. A system call is an entry point into the Linux kernel. Usually, system calls are not invoked directly: instead, most system calls have corresponding C library wrapper functions which perform the steps required (e.g., trapping to kernel mode) in order to invoke the system call. Thus, making a system call looks the same as invoking a normal library function.
Page 1
- accept
- 在一个套接字上接收一个连接
- bind
- 将一个名字和一个套接字绑定到一起(赋一个名字给一个套接字)
- close
- 关闭一个文件描述符
- create_module
- 生成一条可加载模块记录
- execve
- 执行程序
- init_module
- 初始化一条可加载模块的记录
- listen
- listen for connections on a socket 在一个套接字上倾听连接
- open
- open, creat - 打开和/或创建一个文件
- query_module
- 向内核查询和模块有关的各个位. /* 查询有关的位?? */
- read
- 在文件描述符上执行读操作
- send
- send, sendto, sendmsg - 从套接字发送消息
- socket
- 建立一个用于交流的端点
- write
- 在一个文件描述符上执行写操作
- accept
- 在一個套接字上接收一個連線
- bind
- 將一個名字和一個套接字繫結到一起(賦一個名字給一個套接字)
- close
- 關閉一個檔案描述符
- create_module
- 生成一條可載入模組記錄
- execve
- 執行程式
- init_module
- 初始化一條可載入模組的記錄
- listen
- listen for connections on a socket 在一個套接字上傾聽連線
- open
- open, creat - 開啟和/或建立一個檔案
- query_module
- 向核心查詢和模組有關的各個位. /* 查詢有關的位?? */
- read
- 在檔案描述符上執行讀操作
- send
- send, sendto, sendmsg - 從套接字傳送訊息
- socket
- 建立一個用於交流的端點
- write
- 在一個檔案描述符上執行寫操作