Loading...
struct _IO_FILEstruct _IO_FILE { char* _IO_buf_base; 缓冲区的起始地址 char...
open打开一个文件头文件: #include <sys/types.h> #include <sys/stat.h&g...
fork创建一个子进程头文件: #include <unistd.h> 原型: pid_t fork(void); 返回值: ...
pthread_create创建线程头文件: #include <pthread.h> 原型: int pthread_cre...
pthread_mutex_init | PTHREAD_MUTEX_INITIALIZER创建并初始化互斥锁头文件: #include <...