首页 列表 - 第 26 页

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

SETSID - Linux手册页

SETSID - Linux手册页 Linux程序员手册 第2部分 更新日期: 2017-09-15 名称 setsid-创建会话并设置进程组ID 语法 #包括 #包括 pid_t setsid(void); 说明 如果调用进程不是进程组负责人,则setsid()将创建一个新会话。调用进程是新会话的领导者(即,其会话ID与进程ID相同)。调用进程也将成为会话中新进程组的进程组负责人(即

Views:0  2019-08-20

GETSOCKOPT - Linux手册页

GETSOCKOPT - Linux手册页 Linux程序员手册 第2部分 更新日期: 2020-04-11 名称 getsockopt,setsockopt-在套接字上获取和设置选项 语法 #include <sys/types.h> /* See NOTES */ #include <sys/socket.h> int getsockopt(

Views:0  2019-08-20

GETTIMEOFDAY - Linux手册页

GETTIMEOFDAY - Linux手册页 Linux程序员手册 第2部分 更新日期: 2019-03-06 名称 gettimeofday,settimeofday-获取/设置时间 语法 #include <sys/time.h> int gettimeofday(struct timeval *tv, struct timezone *tz); int settim

Views:0  2019-08-20

SETUID - Linux手册页

SETUID - Linux手册页 Linux程序员手册 第2部分 更新日期: 2019-03-06 名称 setuid-设置用户身份 语法 #包括 #包括 int setuid(uid_t uid); 说明 setuid()设置调用过程的有效用户ID。如果调用进程具有特权(更确切地说:如果该进程在其用户名称空间中具有CAP_SETUID功能),则还将设置实际UID和保存的set-us

Views:0  2019-08-20

SETUID - Linux手册页

SETUID - Linux手册页 Linux程序员手册 第2部分 更新日期: 2019-03-06 名称 setuid-设置用户身份 语法 #包括 #包括 int setuid(uid_t uid); 说明 setuid()设置调用过程的有效用户ID。如果调用进程具有特权(更确切地说:如果该进程在其用户名称空间中具有CAP_SETUID功能),则还将设置实际UID和保存的set-us

Views:0  2019-08-20

SETUP - Linux手册页

SETUP - Linux手册页 Linux程序员手册 第2部分 更新日期: 2008-12-03 名称 setup-设置设备和文件系统,挂载根文件系统 语法 #include <unistd.h> int setup(void); 说明 在linux / init / main.c中一次调用setup()。它为配置到内核中的设备和文件系统调用初始化函数,然后挂载根文件系统

Views:0  2019-08-20

SETXATTR - Linux手册页

SETXATTR - Linux手册页 Linux程序员手册 第2部分 更新日期: 2019-08-02 名称 setxattr,lsetxattr,fsetxattr-设置扩展属性值 语法 #include <sys/types.h> #include <sys/xattr.h> int setxattr(const char *path, const char

Views:0  2019-08-20

SGETMASK - Linux手册页

SGETMASK - Linux手册页 Linux程序员手册 第2部分 更新日期: 2020-08-13 名称 sgetmask,ssetmask-信号掩码的操作(作废) 语法 长sgetmask(void); 长ssetmask(long newmask); 注意:这些系统调用没有glibc包装器。请参阅注释。 说明 这些系统调用已过时。不要使用它们;使用sigprocmask(2)

Views:0  2019-08-20

SHMOP - Linux手册页

SHMOP - Linux手册页 Linux程序员手册 第2部分 更新日期: 2020-04-11 名称 shmat,shmdt-System V共享内存操作 语法 #include <sys/types.h> #include <sys/shm.h> void *shmat(int shmid, const void *shmaddr, int shmflg);

Views:0  2019-08-20

SHMCTL - Linux手册页

SHMCTL - Linux手册页 Linux程序员手册 第2部分 更新日期: 2020-04-11 名称 shmctl-系统V共享内存控制 语法 #包括 #包括 int shmctl(int shmid,int cmd,struct shmid_ds * buf);复制代码 说明 shmctl()在SystemV共享内存段上执行cmd指定的控制操作,该段的标识符在shmid中给出。

Views:0  2019-08-20

SHMOP - Linux手册页

SHMOP - Linux手册页 Linux程序员手册 第2部分 更新日期: 2020-04-11 名称 shmat,shmdt-System V共享内存操作 语法 #include <sys/types.h> #include <sys/shm.h> void *shmat(int shmid, const void *shmaddr, int shmflg);

Views:0  2019-08-20

SHMGET - Linux手册页

SHMGET - Linux手册页 Linux程序员手册 第2部分 更新日期: 2020-04-11 名称 shmget-分配系统V共享内存段 语法 #包括 #包括 int shmget(key_t键,size_t大小,int shmflg); 说明 shmget()返回与自变量键的值关联的System V共享内存段的标识符。它既可以用于获取先前创建的共享内存段的标识符(当shmflg

Views:0  2019-08-20

SHMOP - Linux手册页

SHMOP - Linux手册页 Linux程序员手册 第2部分 更新日期: 2020-04-11 名称 shmat,shmdt-System V共享内存操作 语法 #include <sys/types.h> #include <sys/shm.h> void *shmat(int shmid, const void *shmaddr, int shmflg);

Views:0  2019-08-20

SHUTDOWN - Linux手册页

SHUTDOWN - Linux手册页 Linux程序员手册 第2部分 更新日期: 2018-04-30 名称 shutdown-关闭全双工连接的一部分 语法 #包括 int shutdown(int sockfd,int how); 说明 shutdown()调用导致与sockfd关联的套接字上的全双工连接的全部或部分被关闭。如果SHUT_RD如何,将不允许进一步的接收。如果如何SH

Views:0  2019-08-20

SIGACTION - Linux手册页

SIGACTION - Linux手册页 Linux程序员手册 第2部分 更新日期: 2020-08-13 名称 sigaction,rt_sigaction-检查并更改信号动作 语法 #include <signal.h> int sigaction(int signum, const struct sigaction *act, struct

Views:0  2019-08-20