首页 列表 - 第 29 页

SYNC - Linux手册页

SYNC - Linux手册页 Linux程序员手册 第2部分 更新日期: 2020-08-13 名称 sync,syncfs-将文件系统缓存提交到磁盘 语法 #包括 void sync(void); int syncfs(int fd); glibc的功能测试宏要求(请参阅feature_test_macros(7)): 同步(): _XOPEN_SOURCE> = 500 || /

Views:0  2019-08-20

SYSCALL - Linux手册页

SYSCALL - Linux手册页 Linux程序员手册 第2部分 更新日期: 2020-06-09 名称 syscall-间接系统调用 语法 #include <unistd.h> #include <sys/syscall.h> /* For SYS_xxx definitions */ long syscall(long number, ...); g

Views:0  2019-08-20

SYSCALLS - Linux手册页

SYSCALLS - Linux手册页 Linux程序员手册 第2部分 更新日期: 2020-08-13 名称 syscalls-Linux系统调用 语法 Linux系统调用。 说明 系统调用是应用程序和Linux内核之间的基本接口。 System calls and library wrapper functions 通常不直接调用系统调用,而是通过glibc(或其他库)中的包装函数

Views:0  2019-08-20

SYSCTL - Linux手册页

SYSCTL - Linux手册页 Linux程序员手册 第2部分 更新日期: 2020-06-09 名称 sysctl-读/写系统参数 语法 #include <unistd.h> #include <linux/sysctl.h> int _sysctl(struct __sysctl_args *args); 说明 当前内核不再存在该系统调用!请参阅注释

Views:0  2019-08-20

SYSFS - Linux手册页

SYSFS - Linux手册页 Linux程序员手册 第2部分 更新日期: 2020-06-09 名称 sysfs-获取文件系统类型信息 语法 int sysfs(int选项,const char * fsname); int sysfs(int选项,无符号int fs_index,char * buf); int sysfs(int选项); 说明 注意:如果要查找有关通常挂载在/

Views:0  2019-08-20

SYSINFO - Linux手册页

SYSINFO - Linux手册页 Linux程序员手册 第2部分 更新日期: 2017-09-15 名称 sysinfo-返回系统信息 语法 #包括 int sysinfo(struct sysinfo * info); 说明 sysinfo()返回有关内存和交换使用情况以及平均负载的某些统计信息。 在Linux 2.3.16之前,sysinfo()返回以下结构的信息: struc

Views:0  2019-08-20

SYSLOG - Linux手册页

SYSLOG - Linux手册页 Linux程序员手册 第2部分 更新日期: 2020-08-13 名称 syslog,klogctl-读取和/或清除内核消息环形缓冲区;设置console_loglevel 语法 int syslog(int type, char *bufp, int len); /* No wrapper provided in gli

Views:0  2019-08-20

TEE - Linux手册页

TEE - Linux手册页 Linux程序员手册 第2部分 更新日期: 2020-06-09 名称 tee-复制管道内容 语法 #define _GNU_SOURCE /* See feature_test_macros(7) */ #include <fcntl.h> ssize_t tee(int fd_in, int fd_out, size_t le

Views:0  2019-08-20

TKILL - Linux手册页

TKILL - Linux手册页 Linux程序员手册 第2部分 更新日期: 2019-08-02 名称 tkill,tgkill-向线程发送信号 语法 int tkill(int tid, int sig); int tgkill(int tgid, int tid, int sig); 注意:tkill()没有glibc包装器;请参阅注释。 说明 tgkill()将信号sig发送

Views:0  2019-08-20

TIME - Linux手册页

TIME - Linux手册页 Linux程序员手册 第2部分 更新日期: 2017-09-15 名称 time-以秒为单位获取时间 语法 #include <time.h> time_t time(time_t *tloc); 说明 time()返回时间,以从1970年1月1日00:00:00 +0000(UTC)开始的秒数开始。 如果tloc为非NULL,则返回值也存储

Views:0  2019-08-20

TIMER_CREATE - Linux手册页

TIMER_CREATE - Linux手册页 Linux程序员手册 第2部分 更新日期: 2020-04-11 名称 timer_create-创建POSIX每进程计时器 语法 #include <signal.h> #include <time.h> int timer_create(clockid_t clockid, struct sigevent *se

Views:0  2019-08-20

TIMER_DELETE - Linux手册页

TIMER_DELETE - Linux手册页 Linux程序员手册 第2部分 更新日期: 2015-08-08 名称 timer_delete-删除POSIX每进程计时器 语法 #include <time.h> int timer_delete(timer_t timerid); 与-lrt链接。 glibc的功能测试宏要求(请参阅feature_test_macros(

Views:0  2019-08-20

TIMER_GETOVERRUN - Linux手册页

TIMER_GETOVERRUN - Linux手册页 Linux程序员手册 第2部分 更新日期: 2020-06-09 名称 timer_getoverrun-获取POSIX每进程计时器的溢出计数 语法 #include <time.h> int timer_getoverrun(timer_t timerid); 与-lrt链接。 glibc的功能测试宏要求(请参阅fea

Views:0  2019-08-20

TIMER_SETTIME - Linux手册页

TIMER_SETTIME - Linux手册页 Linux程序员手册 第2部分 更新日期: 2020-06-09 名称 timer_settime,timer_gettime-POSIX每进程计时器的布防/撤防和获取状态 语法 #include <time.h> int timer_settime(timer_t timerid, int flags,

Views:0  2019-08-20

TIMER_SETTIME - Linux手册页

TIMER_SETTIME - Linux手册页 Linux程序员手册 第2部分 更新日期: 2020-06-09 名称 timer_settime,timer_gettime-POSIX每进程计时器的布防/撤防和获取状态 语法 #include <time.h> int timer_settime(timer_t timerid, int flags,

Views:0  2019-08-20

TIMERFD_CREATE - Linux手册页

TIMERFD_CREATE - Linux手册页 Linux程序员手册 第2部分 更新日期: 2020-08-13 名称 timerfd_create,timerfd_settime,timerfd_gettime-通过文件描述符通知的计时器 语法 #include <sys/timerfd.h> int timerfd_create(int clockid, int fl

Views:0  2019-08-20