posix_mq 2.4.0 → 2.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +5 -5
- data/GIT-VERSION-GEN +1 -1
- data/ext/posix_mq/posix_mq.c +4 -4
- data/posix_mq.gemspec +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 0c55eb6d5b93844b9a481e69ce4cdbc179f3598c05576031d8a09308ff85f698
|
4
|
+
data.tar.gz: 290aa5c5541d6578190faa8c6621d8bd9a321df5231180a4cdda6c9db4747e02
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7a36578ca18e042c967637c16c72decfb9b46e84028fcb3ecbc26ea9574b8c62d79dc3a906e4cf0386e0db8716e9ff8b8b7c7b85c68ae3e1d1c33baed6286a21
|
7
|
+
data.tar.gz: 6dba5202f556ec8a029e045311ad89c291f334aa07927664a7fc171934d1559ae4dc91385f5539445e5836fc90b45e7853e1786dabd23ce93ccead8aeadaac82
|
data/GIT-VERSION-GEN
CHANGED
data/ext/posix_mq/posix_mq.c
CHANGED
@@ -907,7 +907,7 @@ static int lookup_sig(VALUE sig)
|
|
907
907
|
if (!list) {
|
908
908
|
VALUE mSignal = rb_const_get(rb_cObject, rb_intern("Signal"));
|
909
909
|
|
910
|
-
list = rb_funcall(mSignal, rb_intern("list"), 0
|
910
|
+
list = rb_funcall(mSignal, rb_intern("list"), 0);
|
911
911
|
rb_obj_freeze(list);
|
912
912
|
rb_global_variable(&list);
|
913
913
|
}
|
@@ -961,7 +961,7 @@ static void lower_stack_size(pthread_attr_t *attr)
|
|
961
961
|
/* :nodoc: */
|
962
962
|
static VALUE setnotify_exec(VALUE self, VALUE io, VALUE thr)
|
963
963
|
{
|
964
|
-
int fd = NUM2INT(rb_funcall(io, id_fileno, 0
|
964
|
+
int fd = NUM2INT(rb_funcall(io, id_fileno, 0));
|
965
965
|
struct posix_mq *mq = get(self, 1);
|
966
966
|
struct sigevent not;
|
967
967
|
pthread_attr_t attr;
|
@@ -979,7 +979,7 @@ static VALUE setnotify_exec(VALUE self, VALUE io, VALUE thr)
|
|
979
979
|
not.sigev_value.sival_int = fd;
|
980
980
|
|
981
981
|
if (!NIL_P(mq->thread))
|
982
|
-
rb_funcall(mq->thread, id_kill, 0
|
982
|
+
rb_funcall(mq->thread, id_kill, 0);
|
983
983
|
mq->thread = thr;
|
984
984
|
|
985
985
|
my_mq_notify(mq->des, ¬);
|
@@ -993,7 +993,7 @@ static VALUE notify_cleanup(VALUE self)
|
|
993
993
|
struct posix_mq *mq = get(self, 1);
|
994
994
|
|
995
995
|
if (!NIL_P(mq->thread)) {
|
996
|
-
rb_funcall(mq->thread, id_kill, 0
|
996
|
+
rb_funcall(mq->thread, id_kill, 0);
|
997
997
|
mq->thread = Qnil;
|
998
998
|
}
|
999
999
|
return Qnil;
|
data/posix_mq.gemspec
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: posix_mq
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.4.
|
4
|
+
version: 2.4.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ruby POSIX MQ hackers
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2018-01-31 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: |-
|
14
14
|
POSIX message queues allow local processes to exchange data in the form
|
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
75
|
version: '0'
|
76
76
|
requirements: []
|
77
77
|
rubyforge_project:
|
78
|
-
rubygems_version: 2.
|
78
|
+
rubygems_version: 2.7.3
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: POSIX message queues for Ruby
|