Fix merge error.

This commit is contained in:
ad 2007-10-08 15:13:12 +00:00
parent 451aacda90
commit b6e1f76ba0
1 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: kern_ktrace.c,v 1.127 2007/10/08 15:12:07 ad Exp $ */
/* $NetBSD: kern_ktrace.c,v 1.128 2007/10/08 15:13:12 ad Exp $ */
/*-
* Copyright (c) 2006, 2007 The NetBSD Foundation, Inc.
@ -68,7 +68,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: kern_ktrace.c,v 1.127 2007/10/08 15:12:07 ad Exp $");
__KERNEL_RCSID(0, "$NetBSD: kern_ktrace.c,v 1.128 2007/10/08 15:13:12 ad Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@ -1085,7 +1085,7 @@ ktrace_common(lwp_t *curl, int ops, int facs, int pid, struct file *fp)
if (fp->f_type == DTYPE_PIPE)
ktd->ktd_flags |= KTDF_INTERACTIVE;
error = kthread_create(PRI_NONE, KTHREAD_MPSAFE, NULL,
error = kthread_create(PRI_NONE, 0, NULL,
ktrace_thread, ktd, &ktd->ktd_lwp, "ktrace");
if (error != 0) {
kmem_free(ktd, sizeof(*ktd));