共找到3條詞條名為Lock的結果 展開

Lock

函數

lock確保當一個線程位於代碼的臨界區時,另一個線程不進入臨界區。如果其他線程試圖進入鎖定的代碼,則它將一直等待(即被阻止),直到該對象被釋放。(C#編程指南)討論了線程處理。lock調用塊開始位置的Enter和塊結束位置的Exit。通常,應避免鎖定public類型,否則實例將超出代碼的控制範圍。

簡介


計算機語言中的函數之一
lock在機械式(POPPING)中表示的是鎖架程序例 #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;
}
線程處理(C#編程指南)這節討論了線程處理。
lock調用塊開始位置的Enter和塊結束位置的Exit。
通常,應避免鎖定public類型,否則實例將超出代碼的控制範圍。常見的結構lock(this)、lock (typeof (MyType)) 和 lock("myLock")違反此準則:
如果實例可以被公共訪問,將出現lock (this)問題。
如果MyType可以被公共訪問,將出現 lock (typeof (MyType))問題。
由於進程中使用同一字元串的任何其他代碼將共享同一個鎖,所以出現lock(“myLock”)問題。
最佳做法是定義private對象來鎖定,或private shared對象變數來保護所有實例所共有的數據。
// statements_lock.cs
using System;
using System.Threading;
class ThreadTest
{
public void RunMe()
{
Console.WriteLine("RunMe called");
}
static void Main()
{
ThreadTest b = new ThreadTest();
Thread t = new Thread(b.RunMe);
t.Start();
}
}
輸出
RunMe called
下例使用線程和lock。只要lock語句存在,語句塊就是臨界區並且balance永遠不會是負數。
//statements_lock2.cs
using System;
using System.Threading;
class Account
{
private Object thisLock = new Object();
int balance;
Random r = new Random();
public Account(int initial)
{
balance = initial;
}
int Withdraw(int amount)
{
// This condition will never be true unless the lock statement
// is commented out:
if (balance < 0)
{
throw new Exception("Negative Balance");
}
// Comment out the next line to see the effect of leaving out
// the lock keyword:
lock(thisLock)
{
if (balance>=amount)
{
Console.WriteLine("Balance before Withdrawal : "+balance);
Console.WriteLine("Amount to Withdraw : -" +amount);
balance = balance - amount;
Console.WriteLine("Balance after Withdrawal : "+balance);
return amount;
}
else
{
return 0;//transaction rejected
}
}
}
public void DoTransactions()
{
for(int i=0;i<100;i++)
{
Withdraw(r.Next(1,100));
}
}
}
class Test
{
static void Main()
{
Thread[] threads=new Thread[10];
Account acc=new Account(1000);
for (int i=0;i<10;i++)
{
Thread t=new Thread(new ThreadStart(acc.DoTransactions));
threads[i]=t;
}
for(int i=0;i<10;i++)
{
threads[i].Start();
}
}
}

命令詳解


用途

保留(reserve)終端。

語法

lock[-Timeout]

描述

lock命令請求用戶密碼、讀取並第二次請求密碼以進行驗證。在此期間,該命令會鎖定終端,直到第二次接收到密碼或以下的一條發生,才會釋放它:
*超出了超時間隔。
*有著相應許可的用戶殺死了該命令。
超時的預設值為15分鐘,但是可以使用-Timeout標誌進行修改。

標誌

-Timeout Timeout參數指定,以分鐘的形式表示了超時間隔。預設值為15分鐘。
示例
1.為了將終端保留在密碼控制下,請輸入:
lock
系統會提示兩次要求密碼,以便其能夠驗證。如果密碼沒有在15分鐘內重複,命令將超時。
2.為了將終端保留在密碼控制下,並且超時間隔為10分鐘,請輸入:
lock-10
文件
/usr/bin/lock包含了lock命令。
VB-----------------------------------------
限制其他程序對文件的存取格式