From eda764aaf5e2303e937924e0e5628e7cab64270d Mon Sep 17 00:00:00 2001 From: darran Date: Tue, 23 Feb 2010 22:22:29 +0000 Subject: [PATCH] DTrace: remove kern_dtrace.c since it is no longer used. (Its functions are inlined in dtrace_bsd.h). --- sys/kern/kern_dtrace.c | 54 ------------------------------------------ 1 file changed, 54 deletions(-) delete mode 100644 sys/kern/kern_dtrace.c diff --git a/sys/kern/kern_dtrace.c b/sys/kern/kern_dtrace.c deleted file mode 100644 index 6855cc65451f..000000000000 --- a/sys/kern/kern_dtrace.c +++ /dev/null @@ -1,54 +0,0 @@ -/* $NetBSD: kern_dtrace.c,v 1.2 2010/02/23 22:19:27 darran Exp $ */ - -/*- - * Copyright (c) 2007-2008 John Birrell - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND - * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE - * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - * SUCH DAMAGE. - */ - -#include -__KERNEL_RCSID(0, "$NetBSD: kern_dtrace.c,v 1.2 2010/02/23 22:19:27 darran Exp $"); - -#include -#include -#include -#include -#include -#include -#include - -/* Return the DTrace process data size compiled in the kernel hooks. */ -size_t -kdtrace_proc_size() -{ - - return(KDTRACE_PROC_SIZE); -} - -/* Return the DTrace thread data size compiled in the kernel hooks. */ -size_t -kdtrace_thread_size() -{ - - return(KDTRACE_THREAD_SIZE); -}