win32-mutex 0.4.2 → 0.4.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- checksums.yaml.gz.sig +0 -0
- data.tar.gz.sig +0 -0
- data/CHANGES +65 -58
- data/MANIFEST +11 -8
- data/README +51 -51
- data/Rakefile +33 -36
- data/appveyor.yml +46 -0
- data/certs/djberg96_pub.pem +21 -0
- data/examples/example_win32_mutex.rb +64 -64
- data/lib/win32-mutex.rb +1 -0
- data/lib/win32/mutex.rb +146 -146
- data/test/test_win32_mutex.rb +85 -85
- data/win32-mutex.gemspec +29 -29
- metadata +43 -13
- metadata.gz.sig +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8edc22ada6305c731b65638526d2c089dc7b8228
|
4
|
+
data.tar.gz: 8bf95049fa380e182217bb37a835bf06ed4eea44
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a2a4a56154d161e2c20cc474506c711d4f25b93f39646c76d4bc9441a945af6782870f51bbab753e6b5e75a30775248652bf35cbc2df320b4674545152dd1aa0
|
7
|
+
data.tar.gz: 1d0ee916c5ba5b4cbfedc96b814e39cf045704ec0e64704f95056cdac038376935e81664608d432731ab2e50b6757fc103d9e35f837e73237469c6ab5fc51cda
|
checksums.yaml.gz.sig
ADDED
Binary file
|
data.tar.gz.sig
ADDED
Binary file
|
data/CHANGES
CHANGED
@@ -1,58 +1,65 @@
|
|
1
|
-
== 0.4.
|
2
|
-
*
|
3
|
-
* Added
|
4
|
-
*
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
*
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
*
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
*
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
*
|
29
|
-
|
30
|
-
*
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
*
|
35
|
-
|
36
|
-
|
37
|
-
*
|
38
|
-
|
39
|
-
|
40
|
-
*
|
41
|
-
* Removed the
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
*
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
*
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
*
|
1
|
+
== 0.4.3 - 17-Nov-2015
|
2
|
+
* This gem is now signed.
|
3
|
+
* Added a win32-mutex.rb file for convenience.
|
4
|
+
* All gem related tasks in the Rakefile now assume Rubygems 2.x.
|
5
|
+
* The gemspec no longer sets rubyforge_project.
|
6
|
+
* Added an appveyor.yml file for the MS continuous integration service.
|
7
|
+
|
8
|
+
== 0.4.2 - 21-Oct-2013
|
9
|
+
* Fixed INVALID_HANDLE_VALUE constant for 64-bit Ruby.
|
10
|
+
* Added Rake as a development dependency.
|
11
|
+
* Updated gem:create task for Rubygems 2.
|
12
|
+
|
13
|
+
== 0.4.1 - 10-Apr-2013
|
14
|
+
* Fixed HANDLE type in underlying FFI code. This affects 64 bit versions
|
15
|
+
of Ruby.
|
16
|
+
|
17
|
+
== 0.4.0 - 10-Jul-2012
|
18
|
+
* Converted to FFI.
|
19
|
+
* Now requires Ruby 1.9 or later.
|
20
|
+
* Removed the Error class. If a Windows function fails it raises the
|
21
|
+
appropriate SystemCallError (Errno::).
|
22
|
+
|
23
|
+
== 0.3.2 - 18-Mar-2011
|
24
|
+
* Updates to the Rakefile and gemspec.
|
25
|
+
* One test file change for Ruby 1.9.
|
26
|
+
|
27
|
+
== 0.3.1 - 8-Aug-2009
|
28
|
+
* Changed license to Artistic 2.0.
|
29
|
+
* Updated the gemspec, including addition of license and description update.
|
30
|
+
* Renamed the test and example files.
|
31
|
+
* Added test-unit, win32-process and win32-mmap as development dependencies.
|
32
|
+
|
33
|
+
== 0.3.0 - 4-May-2007
|
34
|
+
* Now pure Ruby.
|
35
|
+
* Both the Mutex.new and Mutex.open methods now accept a block, and
|
36
|
+
automatically close the associated handle at the end of the block.
|
37
|
+
* The Mutex.new method now accepts an optional third argument that controls
|
38
|
+
whether the mutex object can be inherited by other processes.
|
39
|
+
* Added a gemspec.
|
40
|
+
* Added a Rakefile, including tasks for installation and testing.
|
41
|
+
* Removed the doc/mutext.txt file. The documentation is now inlined via RDoc.
|
42
|
+
There is also some documentation in the README file.
|
43
|
+
* The mutex_test.rb script was updated and bugs were fixed.
|
44
|
+
* Now requires the windows-pr package.
|
45
|
+
|
46
|
+
== 0.2.2 - 29-May-2005
|
47
|
+
* Now Unicode friendly.
|
48
|
+
* Removed the mutex.rd file. The mutex.txt file is now rdoc friendly.
|
49
|
+
* Added some tests and tweaked the test setup.
|
50
|
+
|
51
|
+
== 0.2.1 - 1-Mar-2005
|
52
|
+
* Moved the 'examples' directory to the toplevel directory.
|
53
|
+
* Made the CHANGES and README files rdoc friendly.
|
54
|
+
|
55
|
+
== 0.2.0 - 18-Jul-2004
|
56
|
+
* Updated to use the newer allocation framework. This means that, as of this
|
57
|
+
release, this package requires Ruby 1.8.0 or later.
|
58
|
+
* Fixed a minor bug in the initialization function where an expected error
|
59
|
+
might not be raised.
|
60
|
+
* Added tests and documentation for Mutex.open(). This was in the last
|
61
|
+
version, but I forgot to document or test it.
|
62
|
+
* Moved the test.rb script to doc/examples
|
63
|
+
|
64
|
+
== 0.1.0 - 3-May-2004
|
65
|
+
* Initial release
|
data/MANIFEST
CHANGED
@@ -1,8 +1,11 @@
|
|
1
|
-
*
|
2
|
-
*
|
3
|
-
*
|
4
|
-
*
|
5
|
-
*
|
6
|
-
*
|
7
|
-
*
|
8
|
-
*
|
1
|
+
* appveyor.yml
|
2
|
+
* CHANGES
|
3
|
+
* INSTALL
|
4
|
+
* MANIFEST
|
5
|
+
* Rakefile
|
6
|
+
* win32-mutex.gemspec
|
7
|
+
* certs/djberg96_pub.pem
|
8
|
+
* examples/mutex_test.rb
|
9
|
+
* lib/win32-mutex.rb
|
10
|
+
* lib/win32/mutex.rb
|
11
|
+
* test/test_win32_mutex.rb
|
data/README
CHANGED
@@ -1,51 +1,51 @@
|
|
1
|
-
== Brief Description
|
2
|
-
Interface for Mutexes on MS Windows.
|
3
|
-
|
4
|
-
== Prerequisites
|
5
|
-
win32-ipc 0.6.0 or later
|
6
|
-
|
7
|
-
== Installation
|
8
|
-
gem install win32-mutex
|
9
|
-
|
10
|
-
== Synopsis
|
11
|
-
require 'win32/mutex'
|
12
|
-
|
13
|
-
# Do not leave out the 'Win32::', otherwise you're using Ruby's Mutex class.
|
14
|
-
Win32::Mutex.new(false, 'test') do |m|
|
15
|
-
# Do stuff
|
16
|
-
m.release
|
17
|
-
end
|
18
|
-
|
19
|
-
== Documentation
|
20
|
-
The mutex.rb file contains inline RDoc documentation. If you installed
|
21
|
-
this file as a gem, then you have the docs.
|
22
|
-
|
23
|
-
For an example of win32-mutex in action, look at the example_win32_mutex.rb
|
24
|
-
file in the 'examples' directory. You can also run the 'examples' rake task.
|
25
|
-
|
26
|
-
== Notes
|
27
|
-
The Mutex class is a subclass of Win32::Ipc (win32-ipc). This library
|
28
|
-
require's the win32-ipc library internally. You don't need to explicitly
|
29
|
-
call it.
|
30
|
-
|
31
|
-
== Acknowledgements
|
32
|
-
Originally adapted from the Win32::Mutex Perl module.
|
33
|
-
|
34
|
-
== Known Bugs
|
35
|
-
None that I know of. Please log any other bug reports on the
|
36
|
-
project page at https://github.com/djberg96/win32-mutex.
|
37
|
-
|
38
|
-
== License
|
39
|
-
Artistic 2.0
|
40
|
-
|
41
|
-
== Copyright
|
42
|
-
(C) 2003-2013 Daniel J. Berger, All Rights Reserved
|
43
|
-
|
44
|
-
== Warranty
|
45
|
-
This package is provided "as is" and without any express or
|
46
|
-
implied warranties, including, without limitation, the implied
|
47
|
-
warranties of merchantability and fitness for a particular purpose.
|
48
|
-
|
49
|
-
== Authors
|
50
|
-
Daniel J. Berger
|
51
|
-
Park Heesob
|
1
|
+
== Brief Description
|
2
|
+
Interface for Mutexes on MS Windows.
|
3
|
+
|
4
|
+
== Prerequisites
|
5
|
+
win32-ipc 0.6.0 or later
|
6
|
+
|
7
|
+
== Installation
|
8
|
+
gem install win32-mutex
|
9
|
+
|
10
|
+
== Synopsis
|
11
|
+
require 'win32/mutex'
|
12
|
+
|
13
|
+
# Do not leave out the 'Win32::', otherwise you're using Ruby's Mutex class.
|
14
|
+
Win32::Mutex.new(false, 'test') do |m|
|
15
|
+
# Do stuff
|
16
|
+
m.release
|
17
|
+
end
|
18
|
+
|
19
|
+
== Documentation
|
20
|
+
The mutex.rb file contains inline RDoc documentation. If you installed
|
21
|
+
this file as a gem, then you have the docs.
|
22
|
+
|
23
|
+
For an example of win32-mutex in action, look at the example_win32_mutex.rb
|
24
|
+
file in the 'examples' directory. You can also run the 'examples' rake task.
|
25
|
+
|
26
|
+
== Notes
|
27
|
+
The Mutex class is a subclass of Win32::Ipc (win32-ipc). This library
|
28
|
+
require's the win32-ipc library internally. You don't need to explicitly
|
29
|
+
call it.
|
30
|
+
|
31
|
+
== Acknowledgements
|
32
|
+
Originally adapted from the Win32::Mutex Perl module.
|
33
|
+
|
34
|
+
== Known Bugs
|
35
|
+
None that I know of. Please log any other bug reports on the
|
36
|
+
project page at https://github.com/djberg96/win32-mutex.
|
37
|
+
|
38
|
+
== License
|
39
|
+
Artistic 2.0
|
40
|
+
|
41
|
+
== Copyright
|
42
|
+
(C) 2003-2013 Daniel J. Berger, All Rights Reserved
|
43
|
+
|
44
|
+
== Warranty
|
45
|
+
This package is provided "as is" and without any express or
|
46
|
+
implied warranties, including, without limitation, the implied
|
47
|
+
warranties of merchantability and fitness for a particular purpose.
|
48
|
+
|
49
|
+
== Authors
|
50
|
+
Daniel J. Berger
|
51
|
+
Park Heesob
|
data/Rakefile
CHANGED
@@ -1,36 +1,33 @@
|
|
1
|
-
require 'rake'
|
2
|
-
require 'rake/testtask'
|
3
|
-
require 'rake/clean'
|
4
|
-
|
5
|
-
CLEAN.include("**/*.gem")
|
6
|
-
|
7
|
-
namespace :gem do
|
8
|
-
desc 'Create the win32-mutex gem'
|
9
|
-
task :create => [:clean] do
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
end
|
35
|
-
|
36
|
-
task :default => :test
|
1
|
+
require 'rake'
|
2
|
+
require 'rake/testtask'
|
3
|
+
require 'rake/clean'
|
4
|
+
|
5
|
+
CLEAN.include("**/*.gem")
|
6
|
+
|
7
|
+
namespace :gem do
|
8
|
+
desc 'Create the win32-mutex gem'
|
9
|
+
task :create => [:clean] do
|
10
|
+
require 'rubygems/package'
|
11
|
+
spec = eval(IO.read('win32-mutex.gemspec'))
|
12
|
+
spec.signing_key = File.join(Dir.home, '.ssh', 'gem-private_key.pem')
|
13
|
+
Gem::Package.build(spec, true)
|
14
|
+
end
|
15
|
+
|
16
|
+
desc 'Install the win32-mutex gem'
|
17
|
+
task :install => [:create] do
|
18
|
+
file = Dir["*.gem"].first
|
19
|
+
sh "gem install -l #{file}"
|
20
|
+
end
|
21
|
+
end
|
22
|
+
|
23
|
+
desc 'Run the example program'
|
24
|
+
task :example do
|
25
|
+
ruby '-Ilib examples/example_win32_mutex.rb'
|
26
|
+
end
|
27
|
+
|
28
|
+
Rake::TestTask.new do |t|
|
29
|
+
t.verbose = true
|
30
|
+
t.warning = true
|
31
|
+
end
|
32
|
+
|
33
|
+
task :default => :test
|
data/appveyor.yml
ADDED
@@ -0,0 +1,46 @@
|
|
1
|
+
version: '{build}'
|
2
|
+
branches:
|
3
|
+
only:
|
4
|
+
- ffi
|
5
|
+
skip_tags: true
|
6
|
+
clone_depth: 10
|
7
|
+
environment:
|
8
|
+
matrix:
|
9
|
+
- ruby_version: 193
|
10
|
+
ruby_dir: 1.9.1
|
11
|
+
- ruby_version: 200
|
12
|
+
ruby_dir: 2.0.0
|
13
|
+
- ruby_version: 200-x64
|
14
|
+
ruby_dir: 2.0.0
|
15
|
+
- ruby_version: 21
|
16
|
+
ruby_dir: 2.1.0
|
17
|
+
- ruby_version: 21-x64
|
18
|
+
ruby_dir: 2.1.0
|
19
|
+
- ruby_version: 22
|
20
|
+
ruby_dir: 2.2.0
|
21
|
+
- ruby_version: 22-x64
|
22
|
+
ruby_dir: 2.2.0
|
23
|
+
install:
|
24
|
+
- ps: >-
|
25
|
+
$env:path = "C:\Ruby" + $env:ruby_version + "\bin;" + $env:path
|
26
|
+
|
27
|
+
$tpath = "C:\Ruby" + $env:ruby_version + "\lib\ruby\" + $env:ruby_dir + "\test"
|
28
|
+
|
29
|
+
if ((test-path $tpath) -eq $True){ rm -recurse -force $tpath }
|
30
|
+
|
31
|
+
gem update --system > $null
|
32
|
+
|
33
|
+
if ((gem query -i win32-ipc) -eq $False){ gem install win32-ipc --no-document }
|
34
|
+
|
35
|
+
if ((gem query -i test-unit -v ">= 3.0") -eq $False){ gem install test-unit --no-document }
|
36
|
+
cache:
|
37
|
+
- C:\Ruby193\lib\ruby\gems\1.9.1
|
38
|
+
- C:\Ruby200\lib\ruby\gems\2.0.0
|
39
|
+
- C:\Ruby200-x64\lib\ruby\gems\2.0.0
|
40
|
+
- C:\Ruby21\lib\ruby\gems\2.1.0
|
41
|
+
- C:\Ruby21-x64\lib\ruby\gems\2.1.0
|
42
|
+
- C:\Ruby22\lib\ruby\gems\2.2.0
|
43
|
+
- C:\Ruby22-x64\lib\ruby\gems\2.2.0
|
44
|
+
build: off
|
45
|
+
test_script:
|
46
|
+
- cmd: rake
|
@@ -0,0 +1,21 @@
|
|
1
|
+
-----BEGIN CERTIFICATE-----
|
2
|
+
MIIDcDCCAligAwIBAgIBATANBgkqhkiG9w0BAQUFADA/MREwDwYDVQQDDAhkamJl
|
3
|
+
cmc5NjEVMBMGCgmSJomT8ixkARkWBWdtYWlsMRMwEQYKCZImiZPyLGQBGRYDY29t
|
4
|
+
MB4XDTE1MDkwMjIwNDkxOFoXDTE2MDkwMTIwNDkxOFowPzERMA8GA1UEAwwIZGpi
|
5
|
+
ZXJnOTYxFTATBgoJkiaJk/IsZAEZFgVnbWFpbDETMBEGCgmSJomT8ixkARkWA2Nv
|
6
|
+
bTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMyTkvXqRp6hLs9eoJOS
|
7
|
+
Hmi8kRYbq9Vkf15/hMxJpotYMgJVHHWrmDcC5Dye2PbnXjTkKf266Zw0PtT9h+lI
|
8
|
+
S3ts9HO+vaCFSMwFFZmnWJSpQ3CNw2RcHxjWkk9yF7imEM8Kz9ojhiDXzBetdV6M
|
9
|
+
gr0lV/alUr7TNVBDngbXEfTWscyXh1qd7xZ4EcOdsDktCe5G45N/o3662tPQvJsi
|
10
|
+
FOF0CM/KuBsa/HL1/eoEmF4B3EKIRfTHrQ3hu20Kv3RJ88QM4ec2+0dd97uX693O
|
11
|
+
zv6981fyEg+aXLkxrkViM/tz2qR2ZE0jPhHTREPYeMEgptRkTmWSKAuLVWrJEfgl
|
12
|
+
DtkCAwEAAaN3MHUwCQYDVR0TBAIwADALBgNVHQ8EBAMCBLAwHQYDVR0OBBYEFEwe
|
13
|
+
nn6bfJADmuIDiMSOzedOrL+xMB0GA1UdEQQWMBSBEmRqYmVyZzk2QGdtYWlsLmNv
|
14
|
+
bTAdBgNVHRIEFjAUgRJkamJlcmc5NkBnbWFpbC5jb20wDQYJKoZIhvcNAQEFBQAD
|
15
|
+
ggEBAHmNOCWoDVD75zHFueY0viwGDVP1BNGFC+yXcb7u2GlK+nEMCORqzURbYPf7
|
16
|
+
tL+/hzmePIRz7i30UM//64GI1NLv9jl7nIwjhPpXpf7/lu2I9hOTsvwSumb5UiKC
|
17
|
+
/sqBxI3sfj9pr79Wpv4MuikX1XPik7Ncb7NPsJPw06Lvyc3Hkg5X2XpPtLtS+Gr2
|
18
|
+
wKJnmzb5rIPS1cmsqv0M9LPWflzfwoZ/SpnmhagP+g05p8bRNKjZSA2iImM/GyYZ
|
19
|
+
EJYzxdPOrx2n6NYR3Hk+vHP0U7UBSveI6+qx+ndQYaeyCn+GRX2PKS9h66YF/Q1V
|
20
|
+
tGSHgAmcLlkdGgan182qsE/4kKM=
|
21
|
+
-----END CERTIFICATE-----
|
@@ -1,65 +1,65 @@
|
|
1
|
-
##############################################################
|
2
|
-
# example_win32_mutex.rb
|
3
|
-
#
|
4
|
-
# A test script for general futzing. Modify as you see fit.
|
5
|
-
# This test script requires win32-process and win32-mmap.
|
6
|
-
##############################################################
|
7
|
-
MUTEXNAME = "This is a very long name"
|
8
|
-
|
9
|
-
require 'win32/mutex'
|
10
|
-
require 'win32/process'
|
11
|
-
require 'win32/mmap'
|
12
|
-
include Win32
|
13
|
-
|
14
|
-
pid = Process.fork
|
15
|
-
|
16
|
-
# child_1
|
17
|
-
if pid.nil?
|
18
|
-
mm = MMap.open('test')
|
19
|
-
mx = Win32::Mutex.open(MUTEXNAME)
|
20
|
-
5.times{
|
21
|
-
mx.wait
|
22
|
-
puts "child_1 wait "
|
23
|
-
mm.gvalue += 123
|
24
|
-
sleep 1
|
25
|
-
mm.gvalue -= 123
|
26
|
-
mx.release
|
27
|
-
puts "child_1 release "
|
28
|
-
}
|
29
|
-
exit 1
|
30
|
-
end
|
31
|
-
|
32
|
-
pid2 = Process.fork
|
33
|
-
|
34
|
-
# child_2
|
35
|
-
if pid2.nil?
|
36
|
-
mm = MMap.open('test')
|
37
|
-
mx = Win32::Mutex.open(MUTEXNAME)
|
38
|
-
4.times{
|
39
|
-
mx.wait
|
40
|
-
puts "child_2 wait "
|
41
|
-
mm.gvalue += 456
|
42
|
-
sleep 2
|
43
|
-
mm.gvalue -= 456
|
44
|
-
mx.release
|
45
|
-
puts "child_2 release "
|
46
|
-
}
|
47
|
-
exit 1
|
48
|
-
end
|
49
|
-
|
50
|
-
#parent
|
51
|
-
mm = MMap.new(:size => 1024, :name => 'test', :inherit => true)
|
52
|
-
mm.gvalue = 5
|
53
|
-
mx = Win32::Mutex.new(false, MUTEXNAME)
|
54
|
-
|
55
|
-
3.times{
|
56
|
-
mx.wait
|
57
|
-
puts "parent wait"
|
58
|
-
sleep 5
|
59
|
-
printf("Value of GValue=%d\n", mm.gvalue)
|
60
|
-
mx.release
|
61
|
-
puts "parent release"
|
62
|
-
}
|
63
|
-
|
64
|
-
p Process.waitpid2(pid)
|
1
|
+
##############################################################
|
2
|
+
# example_win32_mutex.rb
|
3
|
+
#
|
4
|
+
# A test script for general futzing. Modify as you see fit.
|
5
|
+
# This test script requires win32-process and win32-mmap.
|
6
|
+
##############################################################
|
7
|
+
MUTEXNAME = "This is a very long name"
|
8
|
+
|
9
|
+
require 'win32/mutex'
|
10
|
+
require 'win32/process'
|
11
|
+
require 'win32/mmap'
|
12
|
+
include Win32
|
13
|
+
|
14
|
+
pid = Process.fork
|
15
|
+
|
16
|
+
# child_1
|
17
|
+
if pid.nil?
|
18
|
+
mm = MMap.open('test')
|
19
|
+
mx = Win32::Mutex.open(MUTEXNAME)
|
20
|
+
5.times{
|
21
|
+
mx.wait
|
22
|
+
puts "child_1 wait "
|
23
|
+
mm.gvalue += 123
|
24
|
+
sleep 1
|
25
|
+
mm.gvalue -= 123
|
26
|
+
mx.release
|
27
|
+
puts "child_1 release "
|
28
|
+
}
|
29
|
+
exit 1
|
30
|
+
end
|
31
|
+
|
32
|
+
pid2 = Process.fork
|
33
|
+
|
34
|
+
# child_2
|
35
|
+
if pid2.nil?
|
36
|
+
mm = MMap.open('test')
|
37
|
+
mx = Win32::Mutex.open(MUTEXNAME)
|
38
|
+
4.times{
|
39
|
+
mx.wait
|
40
|
+
puts "child_2 wait "
|
41
|
+
mm.gvalue += 456
|
42
|
+
sleep 2
|
43
|
+
mm.gvalue -= 456
|
44
|
+
mx.release
|
45
|
+
puts "child_2 release "
|
46
|
+
}
|
47
|
+
exit 1
|
48
|
+
end
|
49
|
+
|
50
|
+
#parent
|
51
|
+
mm = MMap.new(:size => 1024, :name => 'test', :inherit => true)
|
52
|
+
mm.gvalue = 5
|
53
|
+
mx = Win32::Mutex.new(false, MUTEXNAME)
|
54
|
+
|
55
|
+
3.times{
|
56
|
+
mx.wait
|
57
|
+
puts "parent wait"
|
58
|
+
sleep 5
|
59
|
+
printf("Value of GValue=%d\n", mm.gvalue)
|
60
|
+
mx.release
|
61
|
+
puts "parent release"
|
62
|
+
}
|
63
|
+
|
64
|
+
p Process.waitpid2(pid)
|
65
65
|
p Process.waitpid2(pid2)
|
data/lib/win32-mutex.rb
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
require_relative 'win32/mutex'
|
data/lib/win32/mutex.rb
CHANGED
@@ -1,146 +1,146 @@
|
|
1
|
-
require 'win32/ipc'
|
2
|
-
|
3
|
-
# The Win32 module serves as a namespace only.
|
4
|
-
module Win32
|
5
|
-
|
6
|
-
# The Mutex class encapsulates Windows mutex objects.
|
7
|
-
class Mutex < Ipc
|
8
|
-
typedef :ulong, :dword
|
9
|
-
typedef :uintptr_t, :handle
|
10
|
-
|
11
|
-
ffi_lib :kernel32
|
12
|
-
|
13
|
-
private
|
14
|
-
|
15
|
-
class SecurityAttributes < FFI::Struct
|
16
|
-
layout(
|
17
|
-
:nLength, :dword,
|
18
|
-
:lpSecurityDescriptor, :pointer,
|
19
|
-
:bInheritHandle, :bool
|
20
|
-
)
|
21
|
-
end
|
22
|
-
|
23
|
-
attach_function :CreateMutexW, [:pointer, :bool, :buffer_in], :handle
|
24
|
-
attach_function :OpenMutexW, [:dword, :bool, :buffer_in], :handle
|
25
|
-
attach_function :ReleaseMutex, [:handle], :bool
|
26
|
-
|
27
|
-
private_class_method :CreateMutexW, :OpenMutexW, :ReleaseMutex
|
28
|
-
|
29
|
-
INVALID_HANDLE_VALUE = FFI::Pointer.new(-1).address
|
30
|
-
MUTEX_ALL_ACCESS = 0x1F0001
|
31
|
-
|
32
|
-
public
|
33
|
-
|
34
|
-
# The version of the win32-mutex library
|
35
|
-
VERSION = '0.4.
|
36
|
-
|
37
|
-
# The name of the mutex object.
|
38
|
-
attr_reader :name
|
39
|
-
|
40
|
-
# Creates and returns new Mutex object. If +name+ is omitted, the
|
41
|
-
# Mutex object is created without a name, i.e. it's anonymous.
|
42
|
-
#
|
43
|
-
# If the +initial_owner+ value is true and the caller created the mutex,
|
44
|
-
# the calling thread obtains initial ownership of the mutex object.
|
45
|
-
# Otherwise, the calling thread does not obtain ownership of the mutex.
|
46
|
-
# This value is false by default.
|
47
|
-
#
|
48
|
-
# If +name+ is provided and it already exists, then it is opened
|
49
|
-
# instead, and the +initial_count+ and +max_count+ parameters are
|
50
|
-
# ignored.
|
51
|
-
#
|
52
|
-
# The +inherit+ attribute determines whether or not the mutex can
|
53
|
-
# be inherited by child processes.
|
54
|
-
#
|
55
|
-
def initialize(initial_owner=false, name=nil, inherit=true)
|
56
|
-
@initial_owner = initial_owner
|
57
|
-
@name = name
|
58
|
-
@inherit = inherit
|
59
|
-
|
60
|
-
if inherit
|
61
|
-
sec = SecurityAttributes.new
|
62
|
-
sec[:nLength] = SecurityAttributes.size
|
63
|
-
sec[:bInheritHandle] = true
|
64
|
-
else
|
65
|
-
sec = nil
|
66
|
-
end
|
67
|
-
|
68
|
-
if name && name.encoding.to_s != 'UTF-16LE'
|
69
|
-
name = name + 0.chr
|
70
|
-
name.encode!('UTF-16LE')
|
71
|
-
end
|
72
|
-
|
73
|
-
handle = CreateMutexW(sec, initial_owner, name)
|
74
|
-
|
75
|
-
if handle == 0 || handle == INVALID_HANDLE_VALUE
|
76
|
-
raise SystemCallError.new("CreateMutex", FFI.errno)
|
77
|
-
end
|
78
|
-
|
79
|
-
super(handle)
|
80
|
-
|
81
|
-
if block_given?
|
82
|
-
begin
|
83
|
-
yield self
|
84
|
-
ensure
|
85
|
-
close # From superclass
|
86
|
-
end
|
87
|
-
end
|
88
|
-
end
|
89
|
-
|
90
|
-
# Open an existing Mutex by +name+. The +inherit+ argument sets
|
91
|
-
# whether or not the object was opened such that a process created by the
|
92
|
-
# CreateProcess() function (a Windows API function) can inherit the
|
93
|
-
# handle. The default is true.
|
94
|
-
#
|
95
|
-
# This method is essentially identical to Mutex.new, except that the
|
96
|
-
# option for +initial_owner+ cannot be set (since it is already set).
|
97
|
-
# Also, this method will raise a Mutex::Error if the mutex doesn't
|
98
|
-
# already exist.
|
99
|
-
#
|
100
|
-
# If you want "open or create" semantics, then use Mutex.new.
|
101
|
-
#
|
102
|
-
def self.open(name, inherit=true, &block)
|
103
|
-
if name.encoding.to_s != 'UTF-16LE'
|
104
|
-
name = name + 0.chr
|
105
|
-
name.encode!('UTF-16LE')
|
106
|
-
end
|
107
|
-
|
108
|
-
begin
|
109
|
-
# The OpenMutex() call here is strictly to force an error if the user
|
110
|
-
# tries to open a mutex that doesn't already exist.
|
111
|
-
handle = OpenMutexW(MUTEX_ALL_ACCESS, inherit, name)
|
112
|
-
|
113
|
-
if handle == 0 || handle == INVALID_HANDLE_VALUE
|
114
|
-
raise SystemCallError.new("OpenMutex", FFI.errno)
|
115
|
-
end
|
116
|
-
ensure
|
117
|
-
CloseHandle(handle) if handle && handle > 0
|
118
|
-
end
|
119
|
-
|
120
|
-
self.new(false, name, inherit, &block)
|
121
|
-
end
|
122
|
-
|
123
|
-
# Releases ownership of the mutex.
|
124
|
-
#
|
125
|
-
def release
|
126
|
-
unless ReleaseMutex(@handle)
|
127
|
-
raise SystemCallError.new("ReleaseMutex", FFI.errno)
|
128
|
-
end
|
129
|
-
end
|
130
|
-
|
131
|
-
# Returns whether or not the calling thread has initial ownership of
|
132
|
-
# the mutex object.
|
133
|
-
#
|
134
|
-
def initial_owner?
|
135
|
-
@initial_owner
|
136
|
-
end
|
137
|
-
|
138
|
-
# Returns whether or not the object was opened such that a process
|
139
|
-
# created by the CreateProcess() function (a Windows API function) can
|
140
|
-
# inherit the handle. The default is true.
|
141
|
-
#
|
142
|
-
def inheritable?
|
143
|
-
@inherit
|
144
|
-
end
|
145
|
-
end
|
146
|
-
end
|
1
|
+
require 'win32/ipc'
|
2
|
+
|
3
|
+
# The Win32 module serves as a namespace only.
|
4
|
+
module Win32
|
5
|
+
|
6
|
+
# The Mutex class encapsulates Windows mutex objects.
|
7
|
+
class Mutex < Ipc
|
8
|
+
typedef :ulong, :dword
|
9
|
+
typedef :uintptr_t, :handle
|
10
|
+
|
11
|
+
ffi_lib :kernel32
|
12
|
+
|
13
|
+
private
|
14
|
+
|
15
|
+
class SecurityAttributes < FFI::Struct
|
16
|
+
layout(
|
17
|
+
:nLength, :dword,
|
18
|
+
:lpSecurityDescriptor, :pointer,
|
19
|
+
:bInheritHandle, :bool
|
20
|
+
)
|
21
|
+
end
|
22
|
+
|
23
|
+
attach_function :CreateMutexW, [:pointer, :bool, :buffer_in], :handle
|
24
|
+
attach_function :OpenMutexW, [:dword, :bool, :buffer_in], :handle
|
25
|
+
attach_function :ReleaseMutex, [:handle], :bool
|
26
|
+
|
27
|
+
private_class_method :CreateMutexW, :OpenMutexW, :ReleaseMutex
|
28
|
+
|
29
|
+
INVALID_HANDLE_VALUE = FFI::Pointer.new(-1).address
|
30
|
+
MUTEX_ALL_ACCESS = 0x1F0001
|
31
|
+
|
32
|
+
public
|
33
|
+
|
34
|
+
# The version of the win32-mutex library
|
35
|
+
VERSION = '0.4.3'
|
36
|
+
|
37
|
+
# The name of the mutex object.
|
38
|
+
attr_reader :name
|
39
|
+
|
40
|
+
# Creates and returns new Mutex object. If +name+ is omitted, the
|
41
|
+
# Mutex object is created without a name, i.e. it's anonymous.
|
42
|
+
#
|
43
|
+
# If the +initial_owner+ value is true and the caller created the mutex,
|
44
|
+
# the calling thread obtains initial ownership of the mutex object.
|
45
|
+
# Otherwise, the calling thread does not obtain ownership of the mutex.
|
46
|
+
# This value is false by default.
|
47
|
+
#
|
48
|
+
# If +name+ is provided and it already exists, then it is opened
|
49
|
+
# instead, and the +initial_count+ and +max_count+ parameters are
|
50
|
+
# ignored.
|
51
|
+
#
|
52
|
+
# The +inherit+ attribute determines whether or not the mutex can
|
53
|
+
# be inherited by child processes.
|
54
|
+
#
|
55
|
+
def initialize(initial_owner=false, name=nil, inherit=true)
|
56
|
+
@initial_owner = initial_owner
|
57
|
+
@name = name
|
58
|
+
@inherit = inherit
|
59
|
+
|
60
|
+
if inherit
|
61
|
+
sec = SecurityAttributes.new
|
62
|
+
sec[:nLength] = SecurityAttributes.size
|
63
|
+
sec[:bInheritHandle] = true
|
64
|
+
else
|
65
|
+
sec = nil
|
66
|
+
end
|
67
|
+
|
68
|
+
if name && name.encoding.to_s != 'UTF-16LE'
|
69
|
+
name = name + 0.chr
|
70
|
+
name.encode!('UTF-16LE')
|
71
|
+
end
|
72
|
+
|
73
|
+
handle = CreateMutexW(sec, initial_owner, name)
|
74
|
+
|
75
|
+
if handle == 0 || handle == INVALID_HANDLE_VALUE
|
76
|
+
raise SystemCallError.new("CreateMutex", FFI.errno)
|
77
|
+
end
|
78
|
+
|
79
|
+
super(handle)
|
80
|
+
|
81
|
+
if block_given?
|
82
|
+
begin
|
83
|
+
yield self
|
84
|
+
ensure
|
85
|
+
close # From superclass
|
86
|
+
end
|
87
|
+
end
|
88
|
+
end
|
89
|
+
|
90
|
+
# Open an existing Mutex by +name+. The +inherit+ argument sets
|
91
|
+
# whether or not the object was opened such that a process created by the
|
92
|
+
# CreateProcess() function (a Windows API function) can inherit the
|
93
|
+
# handle. The default is true.
|
94
|
+
#
|
95
|
+
# This method is essentially identical to Mutex.new, except that the
|
96
|
+
# option for +initial_owner+ cannot be set (since it is already set).
|
97
|
+
# Also, this method will raise a Mutex::Error if the mutex doesn't
|
98
|
+
# already exist.
|
99
|
+
#
|
100
|
+
# If you want "open or create" semantics, then use Mutex.new.
|
101
|
+
#
|
102
|
+
def self.open(name, inherit=true, &block)
|
103
|
+
if name.encoding.to_s != 'UTF-16LE'
|
104
|
+
name = name + 0.chr
|
105
|
+
name.encode!('UTF-16LE')
|
106
|
+
end
|
107
|
+
|
108
|
+
begin
|
109
|
+
# The OpenMutex() call here is strictly to force an error if the user
|
110
|
+
# tries to open a mutex that doesn't already exist.
|
111
|
+
handle = OpenMutexW(MUTEX_ALL_ACCESS, inherit, name)
|
112
|
+
|
113
|
+
if handle == 0 || handle == INVALID_HANDLE_VALUE
|
114
|
+
raise SystemCallError.new("OpenMutex", FFI.errno)
|
115
|
+
end
|
116
|
+
ensure
|
117
|
+
CloseHandle(handle) if handle && handle > 0
|
118
|
+
end
|
119
|
+
|
120
|
+
self.new(false, name, inherit, &block)
|
121
|
+
end
|
122
|
+
|
123
|
+
# Releases ownership of the mutex.
|
124
|
+
#
|
125
|
+
def release
|
126
|
+
unless ReleaseMutex(@handle)
|
127
|
+
raise SystemCallError.new("ReleaseMutex", FFI.errno)
|
128
|
+
end
|
129
|
+
end
|
130
|
+
|
131
|
+
# Returns whether or not the calling thread has initial ownership of
|
132
|
+
# the mutex object.
|
133
|
+
#
|
134
|
+
def initial_owner?
|
135
|
+
@initial_owner
|
136
|
+
end
|
137
|
+
|
138
|
+
# Returns whether or not the object was opened such that a process
|
139
|
+
# created by the CreateProcess() function (a Windows API function) can
|
140
|
+
# inherit the handle. The default is true.
|
141
|
+
#
|
142
|
+
def inheritable?
|
143
|
+
@inherit
|
144
|
+
end
|
145
|
+
end
|
146
|
+
end
|
data/test/test_win32_mutex.rb
CHANGED
@@ -1,85 +1,85 @@
|
|
1
|
-
# encoding: utf-8
|
2
|
-
#######################################################################
|
3
|
-
# test_win32_mutex.rb
|
4
|
-
#
|
5
|
-
# Test suite for the win32-mutex library. This test suite should be
|
6
|
-
# run via the 'rake test' task.
|
7
|
-
#######################################################################
|
8
|
-
require 'test-unit'
|
9
|
-
require 'win32/mutex'
|
10
|
-
|
11
|
-
class TC_Win32_Mutex < Test::Unit::TestCase
|
12
|
-
def setup
|
13
|
-
@mutex = Win32::Mutex.new(true, 'test')
|
14
|
-
@umutex = Win32::Mutex.new(false, 'Ηελλας')
|
15
|
-
end
|
16
|
-
|
17
|
-
test "version is set to expected value" do
|
18
|
-
assert_equal('0.4.
|
19
|
-
end
|
20
|
-
|
21
|
-
test "constructor with no arguments works as expected" do
|
22
|
-
mutex = nil
|
23
|
-
assert_nothing_raised{ mutex = Win32::Mutex.new }
|
24
|
-
mutex.close
|
25
|
-
end
|
26
|
-
|
27
|
-
test "default attributes are set to expected values" do
|
28
|
-
mutex = Win32::Mutex.new
|
29
|
-
assert_false(mutex.initial_owner?)
|
30
|
-
assert_true(mutex.inheritable?)
|
31
|
-
assert_nil(mutex.name)
|
32
|
-
mutex.close
|
33
|
-
end
|
34
|
-
|
35
|
-
test "open method works as expected" do
|
36
|
-
assert_respond_to(Win32::Mutex, :open)
|
37
|
-
assert_nothing_raised{ Win32::Mutex.open('test'){} }
|
38
|
-
assert_nothing_raised{ Win32::Mutex.open('Ηελλας'){} }
|
39
|
-
end
|
40
|
-
|
41
|
-
test "attempting to open an unknown mutex raises an error" do
|
42
|
-
assert_raise(Errno::ENOENT){ Win32::Mutex.open('bogus'){} }
|
43
|
-
end
|
44
|
-
|
45
|
-
test "release method works as expected" do
|
46
|
-
assert_respond_to(@mutex, :release)
|
47
|
-
assert_nothing_raised{ @mutex.release }
|
48
|
-
end
|
49
|
-
|
50
|
-
test "initial_owner? works as expected and returns expected value" do
|
51
|
-
assert_respond_to(@mutex, :initial_owner?)
|
52
|
-
assert_true(@mutex.initial_owner?)
|
53
|
-
assert_false(@umutex.initial_owner?)
|
54
|
-
end
|
55
|
-
|
56
|
-
test "inheritable? works as expected and returns expected value" do
|
57
|
-
assert_respond_to(@mutex, :inheritable?)
|
58
|
-
assert_true(@mutex.inheritable?)
|
59
|
-
end
|
60
|
-
|
61
|
-
test "wait method was inherited" do
|
62
|
-
assert_respond_to(@mutex, :wait)
|
63
|
-
end
|
64
|
-
|
65
|
-
test "wait_any method was inherited" do
|
66
|
-
assert_respond_to(@mutex, :wait_any)
|
67
|
-
end
|
68
|
-
|
69
|
-
test "wait_all method was inherited" do
|
70
|
-
assert_respond_to(@mutex, :wait_all)
|
71
|
-
end
|
72
|
-
|
73
|
-
test "ffi functions are private" do
|
74
|
-
assert_not_respond_to(Win32::Mutex, :CreateMutexW)
|
75
|
-
assert_not_respond_to(Win32::Mutex, :OpenMutexW)
|
76
|
-
assert_not_respond_to(Win32::Mutex, :ReleaseMutex)
|
77
|
-
end
|
78
|
-
|
79
|
-
def teardown
|
80
|
-
@mutex.close
|
81
|
-
@umutex.close
|
82
|
-
@mutex = nil
|
83
|
-
@umutex = nil
|
84
|
-
end
|
85
|
-
end
|
1
|
+
# encoding: utf-8
|
2
|
+
#######################################################################
|
3
|
+
# test_win32_mutex.rb
|
4
|
+
#
|
5
|
+
# Test suite for the win32-mutex library. This test suite should be
|
6
|
+
# run via the 'rake test' task.
|
7
|
+
#######################################################################
|
8
|
+
require 'test-unit'
|
9
|
+
require 'win32/mutex'
|
10
|
+
|
11
|
+
class TC_Win32_Mutex < Test::Unit::TestCase
|
12
|
+
def setup
|
13
|
+
@mutex = Win32::Mutex.new(true, 'test')
|
14
|
+
@umutex = Win32::Mutex.new(false, 'Ηελλας')
|
15
|
+
end
|
16
|
+
|
17
|
+
test "version is set to expected value" do
|
18
|
+
assert_equal('0.4.3', Win32::Mutex::VERSION)
|
19
|
+
end
|
20
|
+
|
21
|
+
test "constructor with no arguments works as expected" do
|
22
|
+
mutex = nil
|
23
|
+
assert_nothing_raised{ mutex = Win32::Mutex.new }
|
24
|
+
mutex.close
|
25
|
+
end
|
26
|
+
|
27
|
+
test "default attributes are set to expected values" do
|
28
|
+
mutex = Win32::Mutex.new
|
29
|
+
assert_false(mutex.initial_owner?)
|
30
|
+
assert_true(mutex.inheritable?)
|
31
|
+
assert_nil(mutex.name)
|
32
|
+
mutex.close
|
33
|
+
end
|
34
|
+
|
35
|
+
test "open method works as expected" do
|
36
|
+
assert_respond_to(Win32::Mutex, :open)
|
37
|
+
assert_nothing_raised{ Win32::Mutex.open('test'){} }
|
38
|
+
assert_nothing_raised{ Win32::Mutex.open('Ηελλας'){} }
|
39
|
+
end
|
40
|
+
|
41
|
+
test "attempting to open an unknown mutex raises an error" do
|
42
|
+
assert_raise(Errno::ENOENT){ Win32::Mutex.open('bogus'){} }
|
43
|
+
end
|
44
|
+
|
45
|
+
test "release method works as expected" do
|
46
|
+
assert_respond_to(@mutex, :release)
|
47
|
+
assert_nothing_raised{ @mutex.release }
|
48
|
+
end
|
49
|
+
|
50
|
+
test "initial_owner? works as expected and returns expected value" do
|
51
|
+
assert_respond_to(@mutex, :initial_owner?)
|
52
|
+
assert_true(@mutex.initial_owner?)
|
53
|
+
assert_false(@umutex.initial_owner?)
|
54
|
+
end
|
55
|
+
|
56
|
+
test "inheritable? works as expected and returns expected value" do
|
57
|
+
assert_respond_to(@mutex, :inheritable?)
|
58
|
+
assert_true(@mutex.inheritable?)
|
59
|
+
end
|
60
|
+
|
61
|
+
test "wait method was inherited" do
|
62
|
+
assert_respond_to(@mutex, :wait)
|
63
|
+
end
|
64
|
+
|
65
|
+
test "wait_any method was inherited" do
|
66
|
+
assert_respond_to(@mutex, :wait_any)
|
67
|
+
end
|
68
|
+
|
69
|
+
test "wait_all method was inherited" do
|
70
|
+
assert_respond_to(@mutex, :wait_all)
|
71
|
+
end
|
72
|
+
|
73
|
+
test "ffi functions are private" do
|
74
|
+
assert_not_respond_to(Win32::Mutex, :CreateMutexW)
|
75
|
+
assert_not_respond_to(Win32::Mutex, :OpenMutexW)
|
76
|
+
assert_not_respond_to(Win32::Mutex, :ReleaseMutex)
|
77
|
+
end
|
78
|
+
|
79
|
+
def teardown
|
80
|
+
@mutex.close
|
81
|
+
@umutex.close
|
82
|
+
@mutex = nil
|
83
|
+
@umutex = nil
|
84
|
+
end
|
85
|
+
end
|
data/win32-mutex.gemspec
CHANGED
@@ -1,29 +1,29 @@
|
|
1
|
-
require 'rubygems'
|
2
|
-
|
3
|
-
Gem::Specification.new do |spec|
|
4
|
-
spec.name
|
5
|
-
spec.version
|
6
|
-
spec.author
|
7
|
-
spec.license
|
8
|
-
spec.email
|
9
|
-
spec.homepage
|
10
|
-
spec.summary
|
11
|
-
spec.test_file
|
12
|
-
spec.files
|
13
|
-
|
14
|
-
|
15
|
-
spec.extra_rdoc_files = ['README', 'CHANGES', 'MANIFEST']
|
16
|
-
spec.required_ruby_version = '> 1.9.0'
|
17
|
-
|
18
|
-
spec.add_dependency('win32-ipc', '>= 0.6.0')
|
19
|
-
|
20
|
-
spec.add_development_dependency('rake')
|
21
|
-
spec.add_development_dependency('test-unit')
|
22
|
-
|
23
|
-
spec.description = <<-EOF
|
24
|
-
The win32-mutex library provides an interface for creating mutex objects
|
25
|
-
on MS Windows. A mutex object is a synchronization object whose state
|
26
|
-
is set to signaled when it is not owned by any thread, and non-signaled
|
27
|
-
when it is owned.
|
28
|
-
EOF
|
29
|
-
end
|
1
|
+
require 'rubygems'
|
2
|
+
|
3
|
+
Gem::Specification.new do |spec|
|
4
|
+
spec.name = 'win32-mutex'
|
5
|
+
spec.version = '0.4.3'
|
6
|
+
spec.author = 'Daniel J. Berger'
|
7
|
+
spec.license = 'Artistic 2.0'
|
8
|
+
spec.email = 'djberg96@gmail.com'
|
9
|
+
spec.homepage = 'https://github.com/djberg96/win32-mutex'
|
10
|
+
spec.summary = 'Interface to MS Windows Mutex objects.'
|
11
|
+
spec.test_file = 'test/test_win32_mutex.rb'
|
12
|
+
spec.files = Dir['**/*'].reject{ |f| f.include?('git') }
|
13
|
+
spec.cert_chain = Dir['certs/*']
|
14
|
+
|
15
|
+
spec.extra_rdoc_files = ['README', 'CHANGES', 'MANIFEST']
|
16
|
+
spec.required_ruby_version = '> 1.9.0'
|
17
|
+
|
18
|
+
spec.add_dependency('win32-ipc', '>= 0.6.0')
|
19
|
+
|
20
|
+
spec.add_development_dependency('rake')
|
21
|
+
spec.add_development_dependency('test-unit')
|
22
|
+
|
23
|
+
spec.description = <<-EOF
|
24
|
+
The win32-mutex library provides an interface for creating mutex objects
|
25
|
+
on MS Windows. A mutex object is a synchronization object whose state
|
26
|
+
is set to signaled when it is not owned by any thread, and non-signaled
|
27
|
+
when it is owned.
|
28
|
+
EOF
|
29
|
+
end
|
metadata
CHANGED
@@ -1,55 +1,77 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: win32-mutex
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.4.
|
4
|
+
version: 0.4.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Daniel J. Berger
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
|
-
cert_chain:
|
11
|
-
|
10
|
+
cert_chain:
|
11
|
+
- |
|
12
|
+
-----BEGIN CERTIFICATE-----
|
13
|
+
MIIDcDCCAligAwIBAgIBATANBgkqhkiG9w0BAQUFADA/MREwDwYDVQQDDAhkamJl
|
14
|
+
cmc5NjEVMBMGCgmSJomT8ixkARkWBWdtYWlsMRMwEQYKCZImiZPyLGQBGRYDY29t
|
15
|
+
MB4XDTE1MDkwMjIwNDkxOFoXDTE2MDkwMTIwNDkxOFowPzERMA8GA1UEAwwIZGpi
|
16
|
+
ZXJnOTYxFTATBgoJkiaJk/IsZAEZFgVnbWFpbDETMBEGCgmSJomT8ixkARkWA2Nv
|
17
|
+
bTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMyTkvXqRp6hLs9eoJOS
|
18
|
+
Hmi8kRYbq9Vkf15/hMxJpotYMgJVHHWrmDcC5Dye2PbnXjTkKf266Zw0PtT9h+lI
|
19
|
+
S3ts9HO+vaCFSMwFFZmnWJSpQ3CNw2RcHxjWkk9yF7imEM8Kz9ojhiDXzBetdV6M
|
20
|
+
gr0lV/alUr7TNVBDngbXEfTWscyXh1qd7xZ4EcOdsDktCe5G45N/o3662tPQvJsi
|
21
|
+
FOF0CM/KuBsa/HL1/eoEmF4B3EKIRfTHrQ3hu20Kv3RJ88QM4ec2+0dd97uX693O
|
22
|
+
zv6981fyEg+aXLkxrkViM/tz2qR2ZE0jPhHTREPYeMEgptRkTmWSKAuLVWrJEfgl
|
23
|
+
DtkCAwEAAaN3MHUwCQYDVR0TBAIwADALBgNVHQ8EBAMCBLAwHQYDVR0OBBYEFEwe
|
24
|
+
nn6bfJADmuIDiMSOzedOrL+xMB0GA1UdEQQWMBSBEmRqYmVyZzk2QGdtYWlsLmNv
|
25
|
+
bTAdBgNVHRIEFjAUgRJkamJlcmc5NkBnbWFpbC5jb20wDQYJKoZIhvcNAQEFBQAD
|
26
|
+
ggEBAHmNOCWoDVD75zHFueY0viwGDVP1BNGFC+yXcb7u2GlK+nEMCORqzURbYPf7
|
27
|
+
tL+/hzmePIRz7i30UM//64GI1NLv9jl7nIwjhPpXpf7/lu2I9hOTsvwSumb5UiKC
|
28
|
+
/sqBxI3sfj9pr79Wpv4MuikX1XPik7Ncb7NPsJPw06Lvyc3Hkg5X2XpPtLtS+Gr2
|
29
|
+
wKJnmzb5rIPS1cmsqv0M9LPWflzfwoZ/SpnmhagP+g05p8bRNKjZSA2iImM/GyYZ
|
30
|
+
EJYzxdPOrx2n6NYR3Hk+vHP0U7UBSveI6+qx+ndQYaeyCn+GRX2PKS9h66YF/Q1V
|
31
|
+
tGSHgAmcLlkdGgan182qsE/4kKM=
|
32
|
+
-----END CERTIFICATE-----
|
33
|
+
date: 2015-11-17 00:00:00.000000000 Z
|
12
34
|
dependencies:
|
13
35
|
- !ruby/object:Gem::Dependency
|
14
36
|
name: win32-ipc
|
15
37
|
requirement: !ruby/object:Gem::Requirement
|
16
38
|
requirements:
|
17
|
-
- -
|
39
|
+
- - ">="
|
18
40
|
- !ruby/object:Gem::Version
|
19
41
|
version: 0.6.0
|
20
42
|
type: :runtime
|
21
43
|
prerelease: false
|
22
44
|
version_requirements: !ruby/object:Gem::Requirement
|
23
45
|
requirements:
|
24
|
-
- -
|
46
|
+
- - ">="
|
25
47
|
- !ruby/object:Gem::Version
|
26
48
|
version: 0.6.0
|
27
49
|
- !ruby/object:Gem::Dependency
|
28
50
|
name: rake
|
29
51
|
requirement: !ruby/object:Gem::Requirement
|
30
52
|
requirements:
|
31
|
-
- -
|
53
|
+
- - ">="
|
32
54
|
- !ruby/object:Gem::Version
|
33
55
|
version: '0'
|
34
56
|
type: :development
|
35
57
|
prerelease: false
|
36
58
|
version_requirements: !ruby/object:Gem::Requirement
|
37
59
|
requirements:
|
38
|
-
- -
|
60
|
+
- - ">="
|
39
61
|
- !ruby/object:Gem::Version
|
40
62
|
version: '0'
|
41
63
|
- !ruby/object:Gem::Dependency
|
42
64
|
name: test-unit
|
43
65
|
requirement: !ruby/object:Gem::Requirement
|
44
66
|
requirements:
|
45
|
-
- -
|
67
|
+
- - ">="
|
46
68
|
- !ruby/object:Gem::Version
|
47
69
|
version: '0'
|
48
70
|
type: :development
|
49
71
|
prerelease: false
|
50
72
|
version_requirements: !ruby/object:Gem::Requirement
|
51
73
|
requirements:
|
52
|
-
- -
|
74
|
+
- - ">="
|
53
75
|
- !ruby/object:Gem::Version
|
54
76
|
version: '0'
|
55
77
|
description: |2
|
@@ -65,12 +87,20 @@ extra_rdoc_files:
|
|
65
87
|
- CHANGES
|
66
88
|
- MANIFEST
|
67
89
|
files:
|
90
|
+
- appveyor.yml
|
91
|
+
- certs
|
92
|
+
- certs/djberg96_pub.pem
|
68
93
|
- CHANGES
|
94
|
+
- examples
|
69
95
|
- examples/example_win32_mutex.rb
|
96
|
+
- lib
|
97
|
+
- lib/win32
|
70
98
|
- lib/win32/mutex.rb
|
99
|
+
- lib/win32-mutex.rb
|
71
100
|
- MANIFEST
|
72
101
|
- Rakefile
|
73
102
|
- README
|
103
|
+
- test
|
74
104
|
- test/test_win32_mutex.rb
|
75
105
|
- win32-mutex.gemspec
|
76
106
|
homepage: https://github.com/djberg96/win32-mutex
|
@@ -83,17 +113,17 @@ require_paths:
|
|
83
113
|
- lib
|
84
114
|
required_ruby_version: !ruby/object:Gem::Requirement
|
85
115
|
requirements:
|
86
|
-
- -
|
116
|
+
- - ">"
|
87
117
|
- !ruby/object:Gem::Version
|
88
118
|
version: 1.9.0
|
89
119
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
90
120
|
requirements:
|
91
|
-
- -
|
121
|
+
- - ">="
|
92
122
|
- !ruby/object:Gem::Version
|
93
123
|
version: '0'
|
94
124
|
requirements: []
|
95
|
-
rubyforge_project:
|
96
|
-
rubygems_version: 2.
|
125
|
+
rubyforge_project:
|
126
|
+
rubygems_version: 2.4.8
|
97
127
|
signing_key:
|
98
128
|
specification_version: 4
|
99
129
|
summary: Interface to MS Windows Mutex objects.
|
metadata.gz.sig
ADDED
Binary file
|