posix 0.0.4 → 0.0.5
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.
- data/ext/posix/posix.c +0 -3
- data/posix.gemspec +1 -1
- metadata +1 -1
data/ext/posix/posix.c
CHANGED
@@ -44,9 +44,6 @@ VALUE posix_sigprocmask(VALUE self, VALUE _how, VALUE _set) {
|
|
44
44
|
rb_Sigset2sigset_t(_set, set);
|
45
45
|
}
|
46
46
|
|
47
|
-
sigemptyset(set);
|
48
|
-
sigaddset(set, SIGINT);
|
49
|
-
|
50
47
|
if (sigprocmask(how, set, oset) == 0) {
|
51
48
|
// TODO Construct a Sigset and return it so that we can interrogate it
|
52
49
|
|
data/posix.gemspec
CHANGED