------------------分割线开始-------------------------
mesg命令:
将mesg设置y时,其他用户可利用write指令将信息直接显示在您的屏幕上。
参数:
n 不允许气筒用户将信息直接显示在你的屏幕上。
y 允许气筒用户将信息直接显示在你的屏幕上。
------------------分割线结束-------------------------
希望对你有帮助。
ockf(fd,1,0)是给fd文件上锁,lockf(fd,0,0)是解锁,配合使用,实现进程的互斥。
头文件
#include <sys/file.h>
函数:
int lockf(int fd, int cmd, off_t len)
fd -- 文件id.
fcntl(2)的接口(inteface)函数
返回1表示调用lockf成功.
lockf用于锁定或打开锁定一个共享文件.
*** 作有:
F_LOCK(锁定),F_TLOCK,F_ULOCK(打开锁定),F_TEST
扩展资料:注意事项
lockf()函数允许将文件区域用作信号量(监视锁),或用于控制对锁定进程的访问(强制模式记录锁定)。试图访问已锁定资源的其他进程将返回错误或进入休眠状态,直到资源解除锁定为止。当关闭文件时,将释放进程的所有锁定,即使进程仍然有打开的文件。当进程终止时,将释放进程保留的所有锁定。
函数声明:
/* 'lockf' is a simpler interface to the locking facilities of 'fcntl'. LEN is always relative to the current file position. The CMD argument is one of the following. This function is a cancellation point and therefore not marked with __THROW. */
#include <unistd.h>
int lockf(int fd, int cmd, off_t len)
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)