module V8::C

def self.Locker

end
#... interact with v8
Locker() do

to synchronize access to V8, and to associate V8 with this thread:

deprecate this because it might make a comeback at some point.
Shim to support the old style locking syntax. We don't currently
def self.Locker
  lock = Locker.new
  yield
ensure
  lock.delete
end