sys-proctable 0.8.0-x86-freebsd-7 → 0.8.1-x86-freebsd-7
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGES +10 -0
- data/ext/bsd/bsd.c +1 -1
- data/ext/version.h +1 -1
- data/test/test_sys_proctable_all.rb +1 -1
- metadata +2 -2
data/CHANGES
CHANGED
@@ -1,3 +1,13 @@
|
|
1
|
+
== 0.8.1 - 6-Apr-2009
|
2
|
+
* The Linux and Solaris libraries now handle the possibility of a process
|
3
|
+
terminating in the middle of a read more gracefully. If that happens, they
|
4
|
+
merely skip to the next record, i.e. it's all or nothing. Thanks go to
|
5
|
+
Heejong Lee for the spot and patch.
|
6
|
+
* Fixed a bug in the Linux version where embedded nulls were not being
|
7
|
+
stripped out of the cmdline data.
|
8
|
+
* Added the comm alias back to the Solaris version. Thanks go to Jun Young Kim
|
9
|
+
for the spot.
|
10
|
+
|
1
11
|
== 0.8.0 - 26-Jan-2009
|
2
12
|
* The Linux and Solaris versions of this library are now pure Ruby. Be warned,
|
3
13
|
however, that only Solaris 8 and later are now supported. This may change
|
data/ext/bsd/bsd.c
CHANGED
@@ -286,7 +286,7 @@ void Init_proctable(){
|
|
286
286
|
|
287
287
|
/* Constants */
|
288
288
|
|
289
|
-
/* 0.8.
|
289
|
+
/* 0.8.1: The version of the sys-proctable library */
|
290
290
|
rb_define_const(cProcTable, "VERSION", rb_str_new2(SYS_PROCTABLE_VERSION));
|
291
291
|
|
292
292
|
/* Structures */
|
data/ext/version.h
CHANGED
@@ -1,2 +1,2 @@
|
|
1
1
|
/* version.h - stores the version number for all platforms (that use C) */
|
2
|
-
#define SYS_PROCTABLE_VERSION "0.8.
|
2
|
+
#define SYS_PROCTABLE_VERSION "0.8.1"
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: sys-proctable
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.8.
|
4
|
+
version: 0.8.1
|
5
5
|
platform: x86-freebsd-7
|
6
6
|
authors:
|
7
7
|
- Daniel J. Berger
|
@@ -9,7 +9,7 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2009-
|
12
|
+
date: 2009-04-08 00:00:00 -06:00
|
13
13
|
default_executable:
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|