OnITRoad - man2
CHROOT - Linux手册页
CHROOT - Linux手册页 Linux程序员手册 第2部分 更新日期: 2019-03-06 名称 chroot-更改根目录 语法 #包括 int chroot(const char * path); glibc的功能测试宏要求(请参阅feature_test_macros(7)): chroot(): Since glibc 2.2.2: _XOPEN_SOURCE &
Views:0 2019-08-20
ADJTIMEX - Linux手册页
ADJTIMEX - Linux手册页 Linux程序员手册 第2部分 更新日期: 2020-06-09 名称 adjtimex,clock_adjtime,ntp_adjtime-调整内核时钟 语法 #include <sys/timex.h> int adjtimex(struct timex *buf); int clock_adjtime(clockid_t clk
Views:0 2019-08-20
CLOCK_GETRES - Linux手册页
CLOCK_GETRES - Linux手册页 Linux程序员手册 第2部分 更新日期: 2020-08-13 名称 clock_getres,clock_gettime,clock_settime-时钟和时间函数 语法 #包括 int clock_getres(clockid_t clockid,struct timespec * res); int clock_gettime(clo
Views:0 2019-08-20
CLOCK_GETRES - Linux手册页
CLOCK_GETRES - Linux手册页 Linux程序员手册 第2部分 更新日期: 2020-08-13 名称 clock_getres,clock_gettime,clock_settime-时钟和时间函数 语法 #包括 int clock_getres(clockid_t clockid,struct timespec * res); int clock_gettime(clo
Views:0 2019-08-20
CLOCK_NANOSLEEP - Linux手册页
CLOCK_NANOSLEEP - Linux手册页 Linux程序员手册 第2部分 更新日期: 2020-04-11 名称 clock_nanosleep-具有指定时钟的高分辨率睡眠 语法 #包括 int clock_nanosleep(clockid_t clockid, int flags, const struct timespec *req
Views:0 2019-08-20
CLOCK_GETRES - Linux手册页
CLOCK_GETRES - Linux手册页 Linux程序员手册 第2部分 更新日期: 2020-08-13 名称 clock_getres,clock_gettime,clock_settime-时钟和时间函数 语法 #包括 int clock_getres(clockid_t clockid,struct timespec * res); int clock_gettime(clo
Views:0 2019-08-20
CLONE - Linux手册页
CLONE - Linux手册页 Linux程序员手册 第2部分 更新日期: 2020-06-09 名称 clone,__ clone2,clone3-创建子进程 语法 /* Prototype for the glibc wrapper function */ #define _GNU_SOURCE #include <sched.h> int clone(int (*f
Views:0 2019-08-20
CLONE - Linux手册页
CLONE - Linux手册页 Linux程序员手册 第2部分 更新日期: 2020-06-09 名称 clone,__ clone2,clone3-创建子进程 语法 /* Prototype for the glibc wrapper function */ #define _GNU_SOURCE #include <sched.h> int clone(int (*f
Views:0 2019-08-20
CLONE - Linux手册页
CLONE - Linux手册页 Linux程序员手册 第2部分 更新日期: 2020-06-09 名称 clone,__ clone2,clone3-创建子进程 语法 /* Prototype for the glibc wrapper function */ #define _GNU_SOURCE #include <sched.h> int clone(int (*f
Views:0 2019-08-20
CLOSE - Linux手册页
CLOSE - Linux手册页 Linux程序员手册 第2部分 更新日期: 2020-06-09 名称 close-关闭文件描述符 语法 #include <unistd.h> int close(int fd); 说明 close()关闭文件描述符,以便它不再引用任何文件,并且可以重用。与该进程关联并由该进程拥有的文件上保留的所有记录锁定(请参阅fcntl(2))(无
Views:0 2019-08-20
CONNECT - Linux手册页
CONNECT - Linux手册页 Linux程序员手册 第2部分 更新日期: 2020-04-11 名称 connect-在套接字上启动连接 语法 #include <sys/types.h> /* See NOTES */ #include <sys/socket.h> int connect(int sockfd, const stru
Views:0 2019-08-20
COPY_FILE_RANGE - Linux手册页
COPY_FILE_RANGE - Linux手册页 Linux程序员手册 第2部分 更新日期: 2020-06-09 名称 copy_file_range-将数据范围从一个文件复制到另一个文件 语法 #define _GNU_SOURCE #include <unistd.h> ssize_t copy_file_range(int fd_in, loff_t *off_i
Views:0 2019-08-20
OPEN - Linux手册页
OPEN - Linux手册页 Linux程序员手册 第2部分 更新日期: 2020-06-09 名称 open, openat, creat-打开并可能创建文件 语法 #include <sys/types.h> #include <sys/stat.h> #include <fcntl.h> int open(const char *pathnam
Views:0 2019-08-20
CREATE_MODULE - Linux手册页
CREATE_MODULE - Linux手册页 Linux程序员手册 第2部分 更新日期: 2017-09-15 名称 create_module-创建一个可加载的模块条目 语法 #include <linux/module.h> caddr_t create_module(const char *name, size_t size); 注意:glibc标头中未提供此系统调
Views:0 2019-08-20
DELETE_MODULE - Linux手册页
DELETE_MODULE - Linux手册页 Linux程序员手册 第2部分 更新日期: 2017-09-15 名称 delete_module-卸载内核模块 语法 int delete_module(const char *name, int flags); 注意:glibc标头中未提供此系统调用的声明;请参阅注释。 说明 系统调用delete_module()尝试删除由名称标识
Views:0 2019-08-20
DUP - Linux手册页
DUP - Linux手册页 Linux程序员手册 第2部分 更新日期: 2020-04-11 名称 dup,dup2,dup3-复制文件描述符 语法 #include <unistd.h> int dup(int oldfd); int dup2(int oldfd, int newfd); #define _GNU_SOURCE /* See f
Views:0 2019-08-20