diff options
author | Ulrich Drepper <drepper@redhat.com> | 2010-04-08 19:58:29 -0700 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2010-04-08 19:58:29 -0700 |
commit | d55d558b4ecf2a9ef4869982ce6c32f9c496bbe7 (patch) | |
tree | d09d1f722d78240bf424bd25f7d54e845eaf365b /nscd/nscd_stat.c | |
parent | 42464d7fe8a4fab468b12466e52f9552e4940fcf (diff) | |
download | glibc-d55d558b4ecf2a9ef4869982ce6c32f9c496bbe7.tar.gz glibc-d55d558b4ecf2a9ef4869982ce6c32f9c496bbe7.tar.xz glibc-d55d558b4ecf2a9ef4869982ce6c32f9c496bbe7.zip |
Print reload count in nscd statistics.
Diffstat (limited to 'nscd/nscd_stat.c')
-rw-r--r-- | nscd/nscd_stat.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/nscd/nscd_stat.c b/nscd/nscd_stat.c index 7f6bd1c83e..658fd56fa3 100644 --- a/nscd/nscd_stat.c +++ b/nscd/nscd_stat.c @@ -1,4 +1,4 @@ -/* Copyright (c) 1998, 2003, 2004, 2005 Free Software Foundation, Inc. +/* Copyright (c) 1998, 2003, 2004, 2005, 2010 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Thorsten Kukuk <kukuk@vt.uni-paderborn.de>, 1998. @@ -80,6 +80,7 @@ struct statdata int max_nthreads; int paranoia; time_t restart_interval; + unsigned int reload_count; int ndbs; struct dbstat dbs[lastdb]; #ifdef HAVE_SELINUX @@ -102,6 +103,7 @@ send_stats (int fd, struct database_dyn dbs[lastdb]) data.max_nthreads = max_nthreads; data.paranoia = paranoia; data.restart_interval = restart_interval; + data.reload_count = reload_count; data.ndbs = lastdb; for (cnt = 0; cnt < lastdb; ++cnt) @@ -240,10 +242,11 @@ receive_print_stats (void) "%15d maximum number of threads\n" "%15lu number of times clients had to wait\n" "%15s paranoia mode enabled\n" - "%15lu restart internal\n"), + "%15lu restart internal\n" + "%15u reload count\n"), data.nthreads, data.max_nthreads, data.client_queued, data.paranoia ? yesstr : nostr, - (unsigned long int) data.restart_interval); + (unsigned long int) data.restart_interval, data.reload_count); for (i = 0; i < lastdb; ++i) { |