Changeset 11284 in webkit for trunk/JavaScriptCore/kjs/interpreter.h
- Timestamp:
- Nov 22, 2005, 9:41:23 PM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/interpreter.h
r10563 r11284 168 168 void initGlobalObject(); 169 169 170 static void lock();171 static void unlock();172 static int lockCount();173 174 170 /** 175 171 * Returns the execution state object which can be used to execute … … 483 479 }; 484 480 485 class InterpreterLock486 {487 public:488 InterpreterLock() { Interpreter::lock(); }489 ~InterpreterLock() { Interpreter::unlock(); }490 private:491 InterpreterLock(const InterpreterLock &);492 InterpreterLock &operator =(const InterpreterLock &);493 };494 495 481 } // namespace 496 482
Note:
See TracChangeset
for help on using the changeset viewer.