hiboma / mruby-mutex

mutex class for mruby

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

mruby-mutex Build Status

Mutex class

install by mrbgems

  • add conf.gem line to build_config.rb
MRuby::Build.new do |conf|

    # ... (snip) ...

    conf.gem :github => 'matsumoto-r/mruby-mutex'
end

example

m = Mutex.new
# for global
# m = Mutex.new :global => true
m.lock
# critical section
m.unlock

License

under the MIT License:

  • see LICENSE file

About

mutex class for mruby

License:Other


Languages

Language:C 65.7%Language:Ruby 34.3%