diff options
author | Remko Lodder <remko@FreeBSD.org> | 2008-07-13 13:42:52 +0000 |
---|---|---|
committer | Remko Lodder <remko@FreeBSD.org> | 2008-07-13 13:42:52 +0000 |
commit | 5f65888ab993e0fe5be8408bc07fbec2d3c73a5f (patch) | |
tree | 724b6ab2116f99cafed8aaa694609283a0272abe | |
parent | f4d811f0b26466000e2001df13ab3bb3876a271b (diff) | |
download | src-test2-5f65888ab993e0fe5be8408bc07fbec2d3c73a5f.tar.gz src-test2-5f65888ab993e0fe5be8408bc07fbec2d3c73a5f.zip |
Notes
-rw-r--r-- | lib/libc/sys/ktrace.2 | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/libc/sys/ktrace.2 b/lib/libc/sys/ktrace.2 index 598cc91f0151..ce0e3f03a4dd 100644 --- a/lib/libc/sys/ktrace.2 +++ b/lib/libc/sys/ktrace.2 @@ -28,7 +28,7 @@ .\" @(#)ktrace.2 8.1 (Berkeley) 6/4/93 .\" $FreeBSD$ .\" -.Dd June 4, 1993 +.Dd July 13, 2008 .Dt KTRACE 2 .Os .Sh NAME @@ -101,7 +101,7 @@ struct ktr_header { pid_t ktr_pid; /* process id */ char ktr_comm[MAXCOMLEN+1]; /* command name */ struct timeval ktr_time; /* timestamp */ - caddr_t ktr_buf; + intptr_t ktr_tid; /* was ktr_buffer */ }; .Ed .Pp @@ -120,8 +120,8 @@ The field gives the time (with microsecond resolution) that the record was generated. The -.Va ktr_buf -is an internal kernel pointer and is not useful. +.Va ktr_tid +field holds a threadid. .Pp The generic header is followed by .Va ktr_len |