OnITRoad - man3
SCANF - Linux手册页
SCANF - Linux手册页 Linux程序员手册 第3部分 更新日期: 2020-08-13 名称 scanf,fscanf,sscanf,vscanf,vsscanf,vfscanf-输入格式转换 语法 #include <stdio.h> int scanf(const char *format, ...); int fscanf(FILE *stream, con
Views:0 2019-08-20
SCHED_GETCPU - Linux手册页
SCHED_GETCPU - Linux手册页 Linux程序员手册 第3部分 更新日期: 2017-09-15 名称 sched_getcpu-确定正在运行调用线程的CPU 语法 #include <sched.h> int sched_getcpu(void); glibc的功能测试宏要求(请参阅feature_test_macros(7)): sched_getcpu(
Views:0 2019-08-20
GETENV - Linux手册页
GETENV - Linux手册页 Linux程序员手册 第3部分 更新日期: 2017-09-15 名称 getenv,secure_getenv-获取环境变量 语法 #include <stdlib.h> char *getenv(const char *name); char *secure_getenv(const char *name); glibc的功能测试宏要
Views:0 2019-08-20
DRAND48 - Linux手册页
DRAND48 - Linux手册页 Linux程序员手册 第3部分 更新日期: 2017-09-15 名称 drand48,erand48,lrand48,nrand48,mrand48,jrand48,srand48,seed48,lcong48-生成均匀分布的伪随机数 语法 #include <stdlib.h> double drand48(void); doubl
Views:0 2019-08-20
DRAND48_R - Linux手册页
DRAND48_R - Linux手册页 Linux程序员手册 第3部分 更新日期: 2017-09-15 名称 drand48_r,erand48_r,lrand48_r,nrand48_r,mrand48_r,jrand48_r,srand48_r,seed48_r,lcong48_r-重新生成均匀分布的伪随机数 语法 #include <stdlib.h> int dr
Views:0 2019-08-20
SEEKDIR - Linux手册页
SEEKDIR - Linux手册页 Linux程序员手册 第3部分 更新日期: 2016-03-15 名称 seekdir-设置目录流中下一个readdir()调用的位置。 语法 #include <dirent.h> void seekdir(DIR *dirp, long loc); glibc的功能测试宏要求(请参阅feature_test_macros(7)): s
Views:0 2019-08-20
SEM_CLOSE - Linux手册页
SEM_CLOSE - Linux手册页 Linux程序员手册 第3部分 更新日期: 2020-08-13 名称 sem_close-关闭一个已命名的信号量 语法 #include <semaphore.h> int sem_close(sem_t *sem); 与-pthread链接。 说明 sem_close()关闭sem引用的命名信号量,从而允许系统分配给该信号量的
Views:0 2019-08-20
SEM_DESTROY - Linux手册页
SEM_DESTROY - Linux手册页 Linux程序员手册 第3部分 更新日期: 2020-08-13 名称 sem_destroy-销毁一个未命名的信号量 语法 #include <semaphore.h> int sem_destroy(sem_t *sem); 与-pthread链接。 说明 sem_destroy()销毁sem指向的地址上的未命名信号量。
Views:0 2019-08-20
SEM_GETVALUE - Linux手册页
SEM_GETVALUE - Linux手册页 Linux程序员手册 第3部分 更新日期: 2020-06-09 名称 sem_getvalue-获取信号量的值 语法 #include <semaphore.h> int sem_getvalue(sem_t *sem, int *sval); 与-pthread链接。 说明 sem_getvalue()将指向sem的信号
Views:0 2019-08-20
SEM_INIT - Linux手册页
SEM_INIT - Linux手册页 Linux程序员手册 第3部分 更新日期: 2020-08-13 名称 sem_init-初始化一个未命名的信号量 语法 #include <semaphore.h> int sem_init(sem_t *sem, int pshared, unsigned int value); 与-pthread链接。 说明 sem_init
Views:0 2019-08-20
SEM_OPEN - Linux手册页
SEM_OPEN - Linux手册页 Linux程序员手册 第3部分 更新日期: 2020-08-13 名称 sem_open-初始化并打开一个命名信号量 语法 #include <fcntl.h> /* For O_* constants */ #include <sys/stat.h> /* For mode constant
Views:0 2019-08-20
SEM_POST - Linux手册页
SEM_POST - Linux手册页 Linux程序员手册 第3部分 更新日期: 2020-08-13 名称 sem_post-解锁信号量 语法 #include <semaphore.h> int sem_post(sem_t *sem); 与-pthread链接。 说明 sem_post()递增(解锁)sem指向的信号量。如果信号量的值因此变得大于零,则将唤醒在se
Views:0 2019-08-20
SEM_WAIT - Linux手册页
SEM_WAIT - Linux手册页 Linux程序员手册 第3部分 更新日期: 2020-06-09 名称 sem_wait,sem_timedwait,sem_trywait-锁定信号量 语法 #include <semaphore.h> int sem_wait(sem_t *sem); int sem_trywait(sem_t *sem); int sem_t
Views:0 2019-08-20
SEM_WAIT - Linux手册页
SEM_WAIT - Linux手册页 Linux程序员手册 第3部分 更新日期: 2020-06-09 名称 sem_wait,sem_timedwait,sem_trywait-锁定信号量 语法 #include <semaphore.h> int sem_wait(sem_t *sem); int sem_trywait(sem_t *sem); int sem_t
Views:0 2019-08-20
SEM_UNLINK - Linux手册页
SEM_UNLINK - Linux手册页 Linux程序员手册 第3部分 更新日期: 2020-08-13 名称 sem_unlink-删除命名的信号量 语法 #include <semaphore.h> int sem_unlink(const char *name); 与-pthread链接。 说明 sem_unlink()删除名称引用的命名信号量。信号灯名称将立即
Views:0 2019-08-20
SEM_WAIT - Linux手册页
SEM_WAIT - Linux手册页 Linux程序员手册 第3部分 更新日期: 2020-06-09 名称 sem_wait,sem_timedwait,sem_trywait-锁定信号量 语法 #include <semaphore.h> int sem_wait(sem_t *sem); int sem_trywait(sem_t *sem); int sem_t
Views:0 2019-08-20