unlock(程式語言)

unlock是一個電腦運行進程,其作用為指解除檔案共享鎖。

基本介紹

  • 外文名:unlock
  • 類型:詞語
  • 功能:解除檔案共享鎖
  • 用法:int unlock
功 能,用 法,程式例,

功 能

解除檔案共享鎖

用 法

int handle, long offset, long length);

程式例

#include
#include
#include
#include
#include
#include
int main(void)
{
int handle, status;
long length;
handle = sopen("c:\\autoexec.bat",O_RDONLY,SH_DENYNO,S_IREAD);
if (handle < 0)
{
printf("sopen failed\n");
exit(1);
}
length = filelength(handle);
status = lock(handle,0L,length/2);
if (status == 0)
printf("lock succeeded\n");
else
printf("lock failed\n");
status = unlock(handle,0L,length/2);
if (status == 0)
printf("unlock succeeded\n");
else
printf("unlock failed\n");
close(handle);
return 0;
}

相關詞條

熱門詞條

聯絡我們