コード例 #1
0
ファイル: andsysutil.c プロジェクト: xyzmst/AndCodec
int
and_sysutil_lock_file_read(int fd)
{
	return lock_internal(fd, F_RDLCK);
}
コード例 #2
0
ファイル: sysutil.c プロジェクト: Tachone/Tachftp
int lock_file_write(int fd)
{
	return lock_internal(fd, F_WRLCK);
}
コード例 #3
0
ファイル: andsysutil.c プロジェクト: xyzmst/AndCodec
int
and_sysutil_lock_file_write(int fd)
{
	return lock_internal(fd, F_WRLCK);
}
コード例 #4
0
ファイル: sysutil.c プロジェクト: Tachone/Tachftp
int lock_file_read(int fd)
{
	return lock_internal(fd, F_RDLCK);
}