kostya-sigar 2.0.0 → 2.0.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
2
  SHA1:
3
- metadata.gz: f258b97c2fc6948581aa1e72f9bec5ea5781cbc4
4
- data.tar.gz: ecff36d0bde36ee9b14e80b185d254370864dcbd
3
+ metadata.gz: c9f3f927d3d1ee66b32e5c0d68e072b05f21b005
4
+ data.tar.gz: 6447872daeed405f9e183965a08b054fbb394bd0
5
5
  SHA512:
6
- metadata.gz: a877c031215303e49a79c134540d9def7b3296928b3d9fb4609bef7d6af047e53f8ac1c8927a15353b3b5f0abaf688100f2838346c9eeef0b0000c71a8e8ce97
7
- data.tar.gz: 72959a3cff28689427e3ccf5f27f230e2b9c742a402322c8f882c2d5bc0e8c9c4549a0c18d6ed2374cf74b251e26d308aa89fefbf485d97258ecf759cf3d025e
6
+ metadata.gz: 6c17d44c09185132e7980e1d099c285ec635cb9c959cec16703c40471c7dfa4b93d6fd1cffe71f61a02aedbb0220a3a64e0bb00e4627c6c5a8d22e77798e5329
7
+ data.tar.gz: d695fb34498105877bc011238b1505a604f776730e1cbf8b864fe7b23f79ff0049046fc4c768b1d69d84166438464e258941012391b45ae9974a547a3ca6660f
data/README CHANGED
@@ -6,6 +6,8 @@ Fixed:
6
6
  * sigfaulted logger, #28 (c2a1af)
7
7
  * bug undefined symbol: sigar_skip_token, #60 (dfe8fe)
8
8
  * bug detection boot_time on linux (now it works like gnu ps, and fix some issues with process start_time) (660259)
9
+ * FreeBSD: don't use v_cache_min/max (https://github.com/hyperic/sigar/pull/68) (800076)
10
+
9
11
 
10
12
  Installation:
11
13
 
@@ -400,8 +400,10 @@ static int sigar_vmstat(sigar_t *sigar, struct vmmeter *vmstat)
400
400
  GET_VM_STATS(vm, v_inactive_target, 0);
401
401
  GET_VM_STATS(vm, v_inactive_count, 1);
402
402
  GET_VM_STATS(vm, v_cache_count, 1);
403
- GET_VM_STATS(vm, v_cache_min, 0);
404
- GET_VM_STATS(vm, v_cache_max, 0);
403
+ #if (__FreeBSD_version < 1100079)
404
+ GET_VM_STATS(vm, v_cache_min, 0);
405
+ GET_VM_STATS(vm, v_cache_max, 0);
406
+ #endif
405
407
  GET_VM_STATS(vm, v_pageout_free_min, 0);
406
408
  GET_VM_STATS(vm, v_interrupt_free_min, 0);
407
409
  GET_VM_STATS(vm, v_forks, 0);
@@ -1,7 +1,7 @@
1
1
  copyright.year=2004-2011
2
2
  version.major=2
3
3
  version.minor=0
4
- version.maint=0
4
+ version.maint=1
5
5
  version.build=0
6
6
  project.name=kostya-sigar
7
7
  project.author=Doug MacEachern
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: kostya-sigar
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.0
4
+ version: 2.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Doug MacEachern
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-01-22 00:00:00.000000000 Z
11
+ date: 2018-04-10 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: System Information Gatherer And Reporter
14
14
  email: sigar-users@hyperic.org