source: dev/BasicCompiler64/CLockParameter.cpp@ 3

Last change on this file since 3 was 3, checked in by dai_9181, 17 years ago
File size: 310 bytes
Line 
1#include "../BasicCompiler_Common/common.h"
2#include "opcode.h"
3
4CDBLockParms::CDBLockParms(){
5}
6CDBLockParms::~CDBLockParms(){
7}
8void CDBLockParms::lock(int level){
9 array_LevelCount[level]++;
10}
11void CDBLockParms::unlock(int level){
12 array_LevelCount[level]--;
13}
14
15CDBLockParms obj_DBLockParms;
Note: See TracBrowser for help on using the repository browser.