Linux 列表 - 第 50 页

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

CHDIR - Linux手册页

CHDIR - Linux手册页 Linux程序员手册 第2部分 更新日期: 2019-08-02 名称 chdir,fchdir-更改工作目录 语法 #包括 int chdir(const char * path); int fchdir(int fd); glibc的功能测试宏要求(请参阅feature_test_macros(7)): fchdir(): _XOPEN_SOURC

Views:0  2019-08-20

CHMOD - Linux手册页

CHMOD - Linux手册页 Linux程序员手册 第2部分 更新日期: 2017-09-15 名称 chmod,fchmod,fchmodat-更改文件的权限 语法 #include <sys/stat.h> int chmod(const char *pathname, mode_t mode); int fchmod(int fd, mode_t mode);

Views:0  2019-08-20

CHMOD - Linux手册页

CHMOD - Linux手册页 Linux程序员手册 第2部分 更新日期: 2017-09-15 名称 chmod,fchmod,fchmodat-更改文件的权限 语法 #include <sys/stat.h> int chmod(const char *pathname, mode_t mode); int fchmod(int fd, mode_t mode);

Views:0  2019-08-20

CHOWN - Linux手册页

CHOWN - Linux手册页 Linux程序员手册 第2部分 更新日期: 2020-06-09 名称 chown,fchown,lchown,fchownat-更改文件的所有权 语法 #include <unistd.h> int chown(const char *pathname, uid_t owner, gid_t group); int fchown(int f

Views:0  2019-08-20

CHOWN - Linux手册页

CHOWN - Linux手册页 Linux程序员手册 第2部分 更新日期: 2020-06-09 名称 chown,fchown,lchown,fchownat-更改文件的所有权 语法 #include <unistd.h> int chown(const char *pathname, uid_t owner, gid_t group); int fchown(int f

Views:0  2019-08-20

CHOWN - Linux手册页

CHOWN - Linux手册页 Linux程序员手册 第2部分 更新日期: 2020-06-09 名称 chown,fchown,lchown,fchownat-更改文件的所有权 语法 #include <unistd.h> int chown(const char *pathname, uid_t owner, gid_t group); int fchown(int f

Views:0  2019-08-20

FCNTL - Linux手册页

FCNTL - Linux手册页 Linux程序员手册 第2部分 更新日期: 2020-08-13 名称 fcntl-操作文件描述符 语法 #include <unistd.h> #include <fcntl.h> int fcntl(int fd, int cmd, ... /* arg */ ); 说明 fcntl()对打开的文件描述符fd执行以下描述的

Views:0  2019-08-20

FCNTL - Linux手册页

FCNTL - Linux手册页 Linux程序员手册 第2部分 更新日期: 2020-08-13 名称 fcntl-操作文件描述符 语法 #include <unistd.h> #include <fcntl.h> int fcntl(int fd, int cmd, ... /* arg */ ); 说明 fcntl()对打开的文件描述符fd执行以下描述的

Views:0  2019-08-20

FSYNC - Linux手册页

FSYNC - Linux手册页 Linux程序员手册 第2部分 更新日期: 2020-06-09 名称 fsync,fdatasync-将文件的核心状态与存储设备同步 语法 #包括 int fsync(int fd); int fdatasync(int fd); glibc的功能测试宏要求(请参阅feature_test_macros(7)): fsync(): Glibc 2.16及

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

GETXATTR - Linux手册页

GETXATTR - Linux手册页 Linux程序员手册 第2部分 更新日期: 2020-06-09 名称 getxattr,lgetxattr,fgetxattr-检索扩展的属性值 语法 #include <sys/types.h> #include <sys/xattr.h> ssize_t getxattr(const char *path, const

Views:0  2019-08-20

INIT_MODULE - Linux手册页

INIT_MODULE - Linux手册页 Linux程序员手册 第2部分 更新日期: 2017-09-15 名称 init_module,finit_module-加载内核模块 语法 int init_module(void *module_image, unsigned long len, const char *param_values); int

Views:0  2019-08-20

LISTXATTR - Linux手册页

LISTXATTR - Linux手册页 Linux程序员手册 第2部分 更新日期: 2020-06-09 名称 listxattr,llistxattr,flistxattr-列出扩展属性名称 语法 #include <sys/types.h> #include <sys/xattr.h> ssize_t listxattr(const char *path,

Views:0  2019-08-20

FLOCK - Linux手册页

FLOCK - Linux手册页 Linux程序员手册 第2部分 更新日期: 2017-09-15 名称 flock-在打开的文件上应用或删除咨询锁 语法 #include <sys/file.h> int flock(int fd, int operation); 说明 在fd指定的打开文件上应用或删除咨询锁。参数操作是以下之一: LOCK_SH 放置一个共享锁。一

Views:0  2019-08-20

FORK - Linux手册页

FORK - Linux手册页 Linux程序员手册 第2部分 更新日期: 2020-06-09 名称 fork-创建一个子进程 语法 #包括 #包括 pid_t fork(无效); 说明 fork()通过复制调用过程来创建一个新过程。新进程称为子进程。调用过程称为父进程。 子进程和父进程在单独的内存空间中运行。在fork()时,两个内存空间具有相同的内容。其中一个进程执行的内存写入,

Views:0  2019-08-20