posix_mq 2.4.0 → 2.4.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: 28c3337592f1850091340d1e8e25434d54f70c01
4
- data.tar.gz: d639e8b75f7e786d802347440d1260f8104f29a9
2
+ SHA256:
3
+ metadata.gz: 0c55eb6d5b93844b9a481e69ce4cdbc179f3598c05576031d8a09308ff85f698
4
+ data.tar.gz: 290aa5c5541d6578190faa8c6621d8bd9a321df5231180a4cdda6c9db4747e02
5
5
  SHA512:
6
- metadata.gz: 9911162a18e4211faf0f1ff1e70e0867b8c7fff3c89a918a1ccacdc1492ddb002a74260fbaa8deefa63c7c6aa59974c9e5da49ac7c1922c010d89b443ee51520
7
- data.tar.gz: 71d299abc47d5f2b1f03fb11e94b7dd2cfcd1a06af0d1eead9b716b8786df6ab0900cffc0f2f590cb2697cf20f71a1ac152da0754d0407f8e6af8199e9709ff2
6
+ metadata.gz: 7a36578ca18e042c967637c16c72decfb9b46e84028fcb3ecbc26ea9574b8c62d79dc3a906e4cf0386e0db8716e9ff8b8b7c7b85c68ae3e1d1c33baed6286a21
7
+ data.tar.gz: 6dba5202f556ec8a029e045311ad89c291f334aa07927664a7fc171934d1559ae4dc91385f5539445e5836fc90b45e7853e1786dabd23ce93ccead8aeadaac82
@@ -1,7 +1,7 @@
1
1
  #!/bin/sh
2
2
 
3
3
  GVF=GIT-VERSION-FILE
4
- DEF_VER=v2.4.0
4
+ DEF_VER=v2.4.1
5
5
 
6
6
  LF='
7
7
  '
@@ -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, 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, 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, 0);
982
+ rb_funcall(mq->thread, id_kill, 0);
983
983
  mq->thread = thr;
984
984
 
985
985
  my_mq_notify(mq->des, &not);
@@ -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, 0);
996
+ rb_funcall(mq->thread, id_kill, 0);
997
997
  mq->thread = Qnil;
998
998
  }
999
999
  return Qnil;
@@ -1,5 +1,5 @@
1
1
  # -*- encoding: binary -*-
2
- ENV["VERSION"] ||= '2.4.0'
2
+ ENV["VERSION"] ||= '2.4.1'
3
3
  if File.exist?('.manifest')
4
4
  manifest = IO.readlines('.manifest').map!(&:chomp!)
5
5
  else
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.0
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: 2017-03-20 00:00:00.000000000 Z
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.6.10
78
+ rubygems_version: 2.7.3
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: POSIX message queues for Ruby