source:
dev/trunk/ab5.0/abdev/compiler_x64/CLockParameter.cpp@
582
| Last change on this file since 582 was 206, checked in by , 18 years ago | |
|---|---|
| File size: 333 bytes | |
| Line | |
|---|---|
| 1 | #include "stdafx.h" |
| 2 | |
| 3 | #include "../BasicCompiler_Common/common.h" |
| 4 | #include "opcode.h" |
| 5 | |
| 6 | CDBLockParms::CDBLockParms(){ |
| 7 | } |
| 8 | CDBLockParms::~CDBLockParms(){ |
| 9 | } |
| 10 | void CDBLockParms::lock(int level){ |
| 11 | array_LevelCount[level]++; |
| 12 | } |
| 13 | void CDBLockParms::unlock(int level){ |
| 14 | array_LevelCount[level]--; |
| 15 | } |
| 16 | |
| 17 | CDBLockParms obj_DBLockParms; |
Note:
See TracBrowser
for help on using the repository browser.
