|
From: <sv...@va...> - 2007-10-16 02:46:08
|
Author: njn
Date: 2007-10-16 03:46:07 +0100 (Tue, 16 Oct 2007)
New Revision: 6999
Log:
move a variable
Modified:
branches/MASSIF2/massif/ms_main.c
Modified: branches/MASSIF2/massif/ms_main.c
===================================================================
--- branches/MASSIF2/massif/ms_main.c 2007-10-15 21:58:54 UTC (rev 6998)
+++ branches/MASSIF2/massif/ms_main.c 2007-10-16 02:46:07 UTC (rev 6999)
@@ -260,7 +260,6 @@
static UInt n_detailed_snapshots = 0;
static UInt n_peak_snapshots = 0;
static UInt n_skipped_snapshots = 0;
-static UInt n_skipped_snapshots_since_last_snapshot = 0;
//------------------------------------------------------------//
@@ -1238,7 +1237,8 @@
static Time min_time_interval = 0;
// Zero allows startup snapshot.
static Time earliest_possible_time_of_next_snapshot = 0;
- static Int n_snapshots_since_last_detailed = 0;
+ static Int n_snapshots_since_last_detailed = 0;
+ static Int n_skipped_snapshots_since_last_snapshot = 0;
Snapshot* snapshot;
Bool is_detailed;
|