Fix null_routine on unix
authorDavid Schmidt <david__schmidt@users.sourceforge.net>
Sat, 28 Dec 2002 04:17:58 +0000 (04:17 +0000)
committerDavid Schmidt <david__schmidt@users.sourceforge.net>
Sat, 28 Dec 2002 04:17:58 +0000 (04:17 +0000)
src/stats.c
src/stats.h

index b191df4..a21a8c0 100644 (file)
@@ -1,10 +1,10 @@
-const char stats_rcs[] = "$Id: stats.c,v 2.3 2002/07/18 22:06:12 jongfoster Exp $";
+const char stats_rcs[] = "$Id: stats.c,v 2.1 2002/12/28 03:58:19 david__schmidt Exp $";
 /*********************************************************************
  *
- * File        :  $Source: /cvsroot/ijbswa/current/src/jcc.c,v $
+ * File        :  $Source: /cvsroot/ijbswa/current/src/stats.c,v $
  *
- * Purpose     :  
- *                
+ * Purpose     :  Functions and definitions for accumulating and
+ *                sending statistics to an "external" stats console
  *
  * Copyright   :  Written by and Copyright (C) 2002, 2003 the SourceForge
  *                Privoxy team. http://www.privoxy.org/
index 3d099c1..de594c6 100644 (file)
@@ -1,6 +1,6 @@
 #ifndef STATS_H_INCLUDED
 #define STATS_H_INCLUDED
-#define STATS_H_VERSION "$Id: stats.h,v 2.0 2002/06/04 14:34:21 jongfoster Exp $"
+#define STATS_H_VERSION "$Id: stats.h,v 2.1 2002/12/28 03:58:19 david__schmidt Exp $"
 /*********************************************************************
  *
  * File        :  $Source: /cvsroot/ijbswa/current/src/stats.h,v $
  *
  * Revisions   :
  *    $Log: stats.h,v $
+ *    Revision 2.1  2002/12/28 03:58:19  david__schmidt
+ *    Initial drop of dashboard instrumentation - enabled with
+ *    --enable-activity-console
+ *
  *
  *********************************************************************/
 \f
@@ -68,6 +72,9 @@ void update_stats_config(struct configuration_spec * config);
 void accumulate_stats(int key, int value);
 void *forward_stats();
 void send_stats(int *p_local_stats_array[]);
+#ifdef unix
+void null_routine(int sig);
+#endif /* def unix */
 
 #endif /* ndef STATS_H_INCLUDED */