summaryrefslogtreecommitdiff
path: root/lib/libc_r/uthread/uthread_info.c
diff options
context:
space:
mode:
authorDavid Leonard <d@cvs.openbsd.org>1999-02-01 08:23:47 +0000
committerDavid Leonard <d@cvs.openbsd.org>1999-02-01 08:23:47 +0000
commit491e3a8354e211e12d542767803888faa2653ff1 (patch)
tree76dd023e1a2263963a10828b26d9f20cececcb74 /lib/libc_r/uthread/uthread_info.c
parenteb79b0d60f1cc3d66aa82eed50f41631bc76e16d (diff)
don't compute resource usage. this speeds things up a lot
Diffstat (limited to 'lib/libc_r/uthread/uthread_info.c')
-rw-r--r--lib/libc_r/uthread/uthread_info.c22
1 files changed, 18 insertions, 4 deletions
diff --git a/lib/libc_r/uthread/uthread_info.c b/lib/libc_r/uthread/uthread_info.c
index 53b1e220f1d..3e682752474 100644
--- a/lib/libc_r/uthread/uthread_info.c
+++ b/lib/libc_r/uthread/uthread_info.c
@@ -29,7 +29,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $OpenBSD: uthread_info.c,v 1.6 1999/01/17 23:58:10 d Exp $
+ * $OpenBSD: uthread_info.c,v 1.7 1999/02/01 08:23:46 d Exp $
*/
#include <stdio.h>
#include <fcntl.h>
@@ -108,8 +108,16 @@ _thread_dump_info(void)
/* Display a list of active threads */
- snprintf(s, sizeof s, " %8s%c%-11s %2s %5s %-8s %5s %5s %s\n",
- "id", ' ', "state", "pr", "flag", "name", "utime", "stime",
+ snprintf(s, sizeof s,
+#ifdef _THREAD_RUSAGE
+ " %8s%c%-11s %2s %5s %-8s %5s %5s %s\n",
+#else
+ " %8s%c%-11s %2s %5s %-8s %s\n",
+#endif
+ "id", ' ', "state", "pr", "flag", "name",
+#ifdef _THREAD_RUSAGE
+ "utime", "stime",
+#endif
"location");
_thread_sys_write(fd, s, strlen(s));
@@ -135,7 +143,11 @@ _thread_dump_info(void)
/* Output a record for the current thread: */
s[0] = 0;
snprintf(s, sizeof(s),
- " %8p%c%-11s %2d %c%c%c%c%c %-8s %5.2f %5.2f %s\n",
+#ifdef _THREAD_RUSAGE
+ " %8p%c%-11s %2d %c%c%c%c%c %-8.8s %5.2f %5.2f %s\n",
+#else
+ " %8p%c%-11s %2d %c%c%c%c%c %-8.8s %s\n",
+#endif
(void *)pthread,
(pthread == _thread_run) ? '*' : ' ',
state,
@@ -148,10 +160,12 @@ _thread_dump_info(void)
(pthread->attr.flags & PTHREAD_INHERIT_SCHED) ? 'I' : ' ',
(pthread->attr.flags & PTHREAD_NOFLOAT) ? 'F' : ' ',
(pthread->name == NULL) ? "" : pthread->name,
+#ifdef _THREAD_RUSAGE
pthread->ru_utime.tv_sec +
(double)pthread->ru_utime.tv_usec / 1000000.0,
pthread->ru_stime.tv_sec +
(double)pthread->ru_stime.tv_usec / 1000000.0,
+#endif
location
);
_thread_sys_write(fd, s, strlen(s));