summaryrefslogtreecommitdiff
path: root/progressmeter.c
diff options
context:
space:
mode:
Diffstat (limited to 'progressmeter.c')
-rw-r--r--progressmeter.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/progressmeter.c b/progressmeter.c
index 629a536b2..93f5a3e62 100644
--- a/progressmeter.c
+++ b/progressmeter.c
@@ -23,7 +23,7 @@
23 */ 23 */
24 24
25#include "includes.h" 25#include "includes.h"
26RCSID("$OpenBSD: progressmeter.c,v 1.21 2004/06/21 17:36:31 avsm Exp $"); 26RCSID("$OpenBSD: progressmeter.c,v 1.22 2004/07/11 17:48:47 deraadt Exp $");
27 27
28#include "progressmeter.h" 28#include "progressmeter.h"
29#include "atomicio.h" 29#include "atomicio.h"
@@ -48,15 +48,15 @@ void refresh_progress_meter(void);
48/* signal handler for updating the progress meter */ 48/* signal handler for updating the progress meter */
49static void update_progress_meter(int); 49static void update_progress_meter(int);
50 50
51static time_t start; /* start progress */ 51static time_t start; /* start progress */
52static time_t last_update; /* last progress update */ 52static time_t last_update; /* last progress update */
53static char *file; /* name of the file being transferred */ 53static char *file; /* name of the file being transferred */
54static off_t end_pos; /* ending position of transfer */ 54static off_t end_pos; /* ending position of transfer */
55static off_t cur_pos; /* transfer position as of last refresh */ 55static off_t cur_pos; /* transfer position as of last refresh */
56static volatile off_t *counter; /* progress counter */ 56static volatile off_t *counter; /* progress counter */
57static long stalled; /* how long we have been stalled */ 57static long stalled; /* how long we have been stalled */
58static int bytes_per_second; /* current speed in bytes per second */ 58static int bytes_per_second; /* current speed in bytes per second */
59static int win_size; /* terminal window size */ 59static int win_size; /* terminal window size */
60 60
61/* units for format_size */ 61/* units for format_size */
62static const char unit[] = " KMGT"; 62static const char unit[] = " KMGT";