您好,登錄后才能下訂單哦!
這篇文章給大家介紹怎么在python中獲取和釋放GIL,內容非常詳細,感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。
python的五大特點:1.簡單易學,開發程序時,專注的是解決問題,而不是搞明白語言本身。2.面向對象,與其他主要的語言如C++和Java相比, Python以一種非常強大又簡單的方式實現面向對象編程。3.可移植性,Python程序無需修改就可以在各種平臺上運行。4.解釋性,Python語言寫的程序不需要編譯成二進制代碼,可以直接從源代碼運行程序。5.開源,Python是 FLOSS(自由/開放源碼軟件)之一。
1、說明
線程對GIL的操作本質上就是通過修改locked狀態變量來獲取或釋放GIL。
2、獲取GIL實例
線程在其他線程已經獲取GIL的時候,需要通過pthread_cond_wait()等待獲取GIL的線程釋放GIL。
/*獲取GIL*/ int PyThread_acquire_lock(PyThread_type_lock lock, int waitflag) { int success; pthread_lock *thelock = (pthread_lock *)lock; int status, error = 0; status = pthread_mutex_lock( &thelock->mut ); /*先獲取mutex, 獲得操作locked變量的權限*/ success = thelock->locked == 0; if ( !success && waitflag ) { /*已有線程上鎖,*/ while ( thelock->locked ) { /*通過pthread_cond_wait等待持有鎖的線程釋放鎖*/ status = pthread_cond_wait(&thelock->lock_released, &thelock->mut); } success = 1; } if (success) thelock->locked = 1; /*當前線程上鎖*/ status = pthread_mutex_unlock( &thelock->mut ); /*解鎖mutex, 讓其他線程有機會進入臨界區等待上鎖*/ if (error) success = 0; return success; }
3、釋放GIL實例
特別注意最后一步, 通過pthread_cond_signal()通知其他等待(pthread_cond_wait())釋放GIL的線程,讓這些線程可以獲取GIL。
/*釋放GIL*/ void PyThread_release_lock(PyThread_type_lock lock) { pthread_lock *thelock = (pthread_lock *)lock; int status, error = 0; status = pthread_mutex_lock( &thelock->mut ); /*通過mutex獲取操作locked變量的權限*/ thelock->locked = 0; /*實際的釋放GIL的操作, 就是將locked置為0*/ status = pthread_mutex_unlock( &thelock->mut ); /*解鎖mutex*/ status = pthread_cond_signal( &thelock->lock_released ); /*這步非常關鍵, 通知其他線程當前線程已經釋放GIL*/ }
關于怎么在python中獲取和釋放GIL就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。