CoreMutex.js 189 B

12345678910
  1. function CoreMutex() {
  2. }
  3. CoreMutex.prototype.lock = function() {
  4. Polycode.CoreMutex_lock(this.__ptr)
  5. }
  6. CoreMutex.prototype.unlock = function() {
  7. Polycode.CoreMutex_unlock(this.__ptr)
  8. }