Remove length field from utrace entries.

This commit is contained in:
Poul-Henning Kamp 1996-09-22 18:18:20 +00:00
parent d920a829d4
commit 3f8ba9ae3e
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=18470

View File

@ -171,7 +171,7 @@ main(argc, argv)
ktrcsw((struct ktr_csw *)m);
break;
case KTR_USER:
ktruser((struct ktr_user *)m);
ktruser(ktrlen, m);
break;
}
if (tail)
@ -439,12 +439,12 @@ ktrcsw(cs)
cs->user ? "user" : "kernel");
}
ktruser(cs)
struct ktr_user *cs;
ktruser(len, p)
int len;
unsigned char *p;
{
unsigned char *p = (unsigned char *)(cs + 1);
(void)printf("%d ", cs->len);
while (cs->len--)
(void)printf("%d ", len);
while (len--)
(void)printf(" %02x", *p++);
(void)printf("\n");