首页 列表 - 第 2 页
USTAT - Linux手册页
USTAT - Linux手册页 Linux程序员手册 第2部分 更新日期: 2019-03-06 名称 ustat-获取文件系统统计信息 语法 #include <sys/types.h> #include <unistd.h> /* libc[45] */ #include <ustat.h> /* glibc2 */ int ust
Views:0 2019-08-20
USERFAULTFD - Linux手册页
USERFAULTFD - Linux手册页 Linux程序员手册 第2部分 更新日期: 2020-06-09 名称 userfaultfd-创建文件描述符以处理用户空间中的页面错误 语法 #include <sys/types.h> #include <linux/userfaultfd.h> int userfaultfd(int flags); 注意:此系统
Views:0 2019-08-20
USELIB - Linux手册页
USELIB - Linux手册页 Linux程序员手册 第2部分 更新日期: 2017-09-15 名称 uselib-加载共享库 语法 #包括 int uselib(const char * library); 注意:glibc标头中未提供此系统调用的声明;请参阅注释。 说明 系统调用uselib()用于加载要由调用进程使用的共享库。它被赋予一个路径名。在库本身中找到要加载的地址。
Views:0 2019-08-20
UNSHARE - Linux手册页
UNSHARE - Linux手册页 Linux程序员手册 第2部分 更新日期: 2020-04-11 名称 unshare-取消流程执行上下文的关联 语法 #define _GNU_SOURCE #include <sched.h> int unshare(int flags); 说明 unshare()允许进程(或线程)取消其执行上下文的当前与其他进程(或线程)共享的
Views:0 2019-08-20
UNLINK - Linux手册页
UNLINK - Linux手册页 Linux程序员手册 第2部分 更新日期: 2017-09-15 名称 unlink, unlinkat-删除名称以及它所引用的文件 语法 #include <unistd.h> int unlink(const char *pathname); #include <fcntl.h> /* Definiti
Views:0 2019-08-20
UNLINK - Linux手册页
UNLINK - Linux手册页 Linux程序员手册 第2部分 更新日期: 2017-09-15 名称 unlink, unlinkat-删除名称以及它所引用的文件 语法 #include <unistd.h> int unlink(const char *pathname); #include <fcntl.h> /* Definiti
Views:0 2019-08-20
UNIMPLEMENTED - Linux手册页
UNIMPLEMENTED - Linux手册页 Linux程序员手册 第2部分 更新日期: 2017-09-15 名称 afs_syscall,break,fattach,fdetach,ftime,getmsg,getpmsg,gtty,isastream,锁,madvise1,mpx,prof,profil,putmsg,putpmsg,安全性,stty,tuxcall,ulimit,v
Views:0 2019-08-20
UNAME - Linux手册页
UNAME - Linux手册页 Linux程序员手册 第2部分 更新日期: 2019-10-10 名称 uname-获取有关当前内核的名称和信息 语法 #包括 int uname(结构utsname * buf); 说明 uname()以buf指向的结构返回系统信息。 utsname结构定义于: struct utsname { char sysname[]; /* O
Views:0 2019-08-20
UMOUNT - Linux手册页
UMOUNT - Linux手册页 Linux程序员手册 第2部分 更新日期: 2020-06-09 名称 umount,umount2-卸载文件系统 语法 #include <sys/mount.h> int umount(const char *target); int umount2(const char *target, int flags); 说明 umoun
Views:0 2019-08-20
UMOUNT - Linux手册页
UMOUNT - Linux手册页 Linux程序员手册 第2部分 更新日期: 2020-06-09 名称 umount,umount2-卸载文件系统 语法 #include <sys/mount.h> int umount(const char *target); int umount2(const char *target, int flags); 说明 umoun
Views:0 2019-08-20
UMASK - Linux手册页
UMASK - Linux手册页 Linux程序员手册 第2部分 更新日期: 2020-08-13 名称 umask-设置文件模式创建掩码 语法 #包括 #包括 mode_t umask(mode_t mask); 说明 umask()将调用过程的文件模式创建掩码(umask)设置为mask&0777(即,仅使用mask的文件许可权位),并返回mask的先前值。 打开(2),mkdir
Views:0 2019-08-20
GETRLIMIT - Linux手册页
GETRLIMIT - Linux手册页 Linux程序员手册 第2部分 更新日期: 2020-06-09 名称 getrlimit,setrlimit,prlimit-获取/设置资源限制 语法 #包括 #包括 int getrlimit(int resource,struct rlimit * rlim); int setrlimit(int resource,const struct
Views:0 2019-08-20
UNIMPLEMENTED - Linux手册页
UNIMPLEMENTED - Linux手册页 Linux程序员手册 第2部分 更新日期: 2017-09-15 名称 afs_syscall,break,fattach,fdetach,ftime,getmsg,getpmsg,gtty,isastream,锁,madvise1,mpx,prof,profil,putmsg,putpmsg,安全性,stty,tuxcall,ulimit,v
Views:0 2019-08-20
TRUNCATE - Linux手册页
TRUNCATE - Linux手册页 Linux程序员手册 第2部分 更新日期: 2019-03-06 名称 truncate, ftruncate-将文件截断为指定的长度 语法 #include <unistd.h> #include <sys/types.h> int truncate(const char *path, off_t length); int
Views:0 2019-08-20
TRUNCATE - Linux手册页
TRUNCATE - Linux手册页 Linux程序员手册 第2部分 更新日期: 2019-03-06 名称 truncate, ftruncate-将文件截断为指定的长度 语法 #include <unistd.h> #include <sys/types.h> int truncate(const char *path, off_t length); int
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