1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
| #pragma once
| #include"cstring"
| #include<fstream>
| #include<iostream>
| #include<string>
| #include<stdio.h>
| #include <Windows.h>
| #include "Python.h"
|
| #include <thread>
|
|
| /*ȫ�ֽ��ͺ��߳���*/
| class PyGILThreadLock
| {
| public:
| PyGILThreadLock()
| {
| _save = NULL;
| nStatus = 0;
| nStatus = PyGILState_Check(); //��ǰ�߳��Ƿ�ӵ��GIL
| PyGILState_STATE gstate;
| if (!nStatus)
| {
| gstate = PyGILState_Ensure(); //���û��GIL���������ȡGIL
| nStatus = 1;
| }
| _save = PyEval_SaveThread();
| PyEval_RestoreThread(_save);
| }
| ~PyGILThreadLock()
| {
| _save = PyEval_SaveThread();
| PyEval_RestoreThread(_save);
| if (nStatus)
| {
| PyGILState_Release(gstate); //�ͷŵ�ǰ�̵߳�GIL
| }
| }
|
| private:
| PyGILState_STATE gstate;
| PyThreadState *_save;
| int nStatus;
| };
|
|