diff options
Diffstat (limited to 'op-i386.c')
-rw-r--r-- | op-i386.c | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -2272,3 +2272,14 @@ void OPPROTO op_fninit(void) env->fptags[6] = 1; env->fptags[7] = 1; } + +/* threading support */ +void OPPROTO op_lock(void) +{ + cpu_lock(); +} + +void OPPROTO op_unlock(void) +{ + cpu_unlock(); +} |