diff options
author | Toomas Soome <tsoome@me.com> | 2021-09-12 13:43:58 +0300 |
---|---|---|
committer | Toomas Soome <tsoome@me.com> | 2022-08-30 19:09:40 +0300 |
commit | 2570281cf351044b6936651ce26dbe1f801dcbd8 (patch) | |
tree | 54957dc5692258b6308df50c8d0f73a334421091 /usr/src/lib/libtnfctl/kernel_int.h | |
parent | 2ec63ffb3ec249bd7cb4523118c8437e6c6be335 (diff) | |
download | illumos-gate-2570281cf351044b6936651ce26dbe1f801dcbd8.tar.gz |
14079 remove TNF
Reviewed by: Gordon Ross <gordon.w.ross@gmail.com>
Reviewed by: Igor Kozhukhov <igor@dilos.org>
Approved by: Garrett D'Amore <garrett@damore.org>
Diffstat (limited to 'usr/src/lib/libtnfctl/kernel_int.h')
-rw-r--r-- | usr/src/lib/libtnfctl/kernel_int.h | 61 |
1 files changed, 0 insertions, 61 deletions
diff --git a/usr/src/lib/libtnfctl/kernel_int.h b/usr/src/lib/libtnfctl/kernel_int.h deleted file mode 100644 index a658ad1e56..0000000000 --- a/usr/src/lib/libtnfctl/kernel_int.h +++ /dev/null @@ -1,61 +0,0 @@ -/* - * CDDL HEADER START - * - * The contents of this file are subject to the terms of the - * Common Development and Distribution License, Version 1.0 only - * (the "License"). You may not use this file except in compliance - * with the License. - * - * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE - * or http://www.opensolaris.org/os/licensing. - * See the License for the specific language governing permissions - * and limitations under the License. - * - * When distributing Covered Code, include this CDDL HEADER in each - * file and include the License file at usr/src/OPENSOLARIS.LICENSE. - * If applicable, add the following below this CDDL HEADER, with the - * fields enclosed by brackets "[]" replaced with your own identifying - * information: Portions Copyright [yyyy] [name of copyright owner] - * - * CDDL HEADER END - */ -/* - * Copyright (c) 1994, by Sun Microsytems, Inc. - */ - -#ifndef _KERNEL_INT_H -#define _KERNEL_INT_H - -#pragma ident "%Z%%M% %I% %E% SMI" - -#ifdef __cplusplus -extern "C" { -#endif - -#include "tnfctl_int.h" - -/* - * interfaces to control kernel tracing and kernel probes - */ - -tnfctl_errcode_t _tnfctl_prbk_init(tnfctl_handle_t *); -tnfctl_errcode_t _tnfctl_prbk_close(tnfctl_handle_t *); -void _tnfctl_prbk_get_other_funcs(uintptr_t *allocp, uintptr_t *commitp, - uintptr_t *rollbackp, uintptr_t *endp); -void _tnfctl_prbk_test_func(uintptr_t *); -tnfctl_errcode_t _tnfctl_prbk_buffer_alloc(tnfctl_handle_t *, int); -tnfctl_errcode_t _tnfctl_prbk_buffer_dealloc(tnfctl_handle_t *); -tnfctl_errcode_t _tnfctl_prbk_set_tracing(tnfctl_handle_t *, boolean_t); -tnfctl_errcode_t _tnfctl_prbk_set_pfilter_mode(tnfctl_handle_t *, boolean_t); -tnfctl_errcode_t _tnfctl_prbk_get_pfilter_list(tnfctl_handle_t *, pid_t **, - int *); -tnfctl_errcode_t _tnfctl_prbk_pfilter_add(tnfctl_handle_t *, pid_t); -tnfctl_errcode_t _tnfctl_prbk_pfilter_delete(tnfctl_handle_t *, pid_t); -tnfctl_errcode_t _tnfctl_prbk_flush(tnfctl_handle_t *, prbctlref_t *); -tnfctl_errcode_t _tnfctl_refresh_kernel(tnfctl_handle_t *hndl); - -#ifdef __cplusplus -} -#endif - -#endif /* _KERNEL_INT_H */ |