xref: /freebsd/lib/libkvm/kvm.h (revision 95a7753b2499033cc10ec39fdd07a9729e015bf0)
159deaec5SRodney W. Grimes /*-
259deaec5SRodney W. Grimes  * Copyright (c) 1989, 1993
359deaec5SRodney W. Grimes  *	The Regents of the University of California.  All rights reserved.
459deaec5SRodney W. Grimes  *
559deaec5SRodney W. Grimes  * Redistribution and use in source and binary forms, with or without
659deaec5SRodney W. Grimes  * modification, are permitted provided that the following conditions
759deaec5SRodney W. Grimes  * are met:
859deaec5SRodney W. Grimes  * 1. Redistributions of source code must retain the above copyright
959deaec5SRodney W. Grimes  *    notice, this list of conditions and the following disclaimer.
1059deaec5SRodney W. Grimes  * 2. Redistributions in binary form must reproduce the above copyright
1159deaec5SRodney W. Grimes  *    notice, this list of conditions and the following disclaimer in the
1259deaec5SRodney W. Grimes  *    documentation and/or other materials provided with the distribution.
1359deaec5SRodney W. Grimes  * 3. All advertising materials mentioning features or use of this software
1459deaec5SRodney W. Grimes  *    must display the following acknowledgement:
1559deaec5SRodney W. Grimes  *	This product includes software developed by the University of
1659deaec5SRodney W. Grimes  *	California, Berkeley and its contributors.
1759deaec5SRodney W. Grimes  * 4. Neither the name of the University nor the names of its contributors
1859deaec5SRodney W. Grimes  *    may be used to endorse or promote products derived from this software
1959deaec5SRodney W. Grimes  *    without specific prior written permission.
2059deaec5SRodney W. Grimes  *
2159deaec5SRodney W. Grimes  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
2259deaec5SRodney W. Grimes  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
2359deaec5SRodney W. Grimes  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
2459deaec5SRodney W. Grimes  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
2559deaec5SRodney W. Grimes  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
2659deaec5SRodney W. Grimes  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
2759deaec5SRodney W. Grimes  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
2859deaec5SRodney W. Grimes  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
2959deaec5SRodney W. Grimes  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
3059deaec5SRodney W. Grimes  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
3159deaec5SRodney W. Grimes  * SUCH DAMAGE.
3259deaec5SRodney W. Grimes  *
3359deaec5SRodney W. Grimes  *	@(#)kvm.h	8.1 (Berkeley) 6/2/93
3495a7753bSBruce Evans  *	$Id: kvm.h,v 1.8 1999/01/27 11:29:15 bde Exp $
3559deaec5SRodney W. Grimes  */
3659deaec5SRodney W. Grimes 
3759deaec5SRodney W. Grimes #ifndef _KVM_H_
3859deaec5SRodney W. Grimes #define	_KVM_H_
3959deaec5SRodney W. Grimes 
4095a7753bSBruce Evans #include <sys/cdefs.h>
4195a7753bSBruce Evans #include <machine/ansi.h>
4295a7753bSBruce Evans #include <nlist.h>
4395a7753bSBruce Evans 
4459deaec5SRodney W. Grimes /* Default version symbol. */
4559deaec5SRodney W. Grimes #define	VRS_SYM		"_version"
4659deaec5SRodney W. Grimes #define	VRS_KEY		"VERSION"
4759deaec5SRodney W. Grimes 
48b245b90aSBruce Evans #ifdef	_BSD_SIZE_T_
49b245b90aSBruce Evans typedef	_BSD_SIZE_T_	size_t;
50b245b90aSBruce Evans #undef	_BSD_SIZE_T_
51b245b90aSBruce Evans #endif
52b245b90aSBruce Evans 
53b245b90aSBruce Evans #ifdef	_BSD_SSIZE_T_
54b245b90aSBruce Evans typedef	_BSD_SSIZE_T_	ssize_t;
55b245b90aSBruce Evans #undef	_BSD_SSIZE_T_
56b245b90aSBruce Evans #endif
5759deaec5SRodney W. Grimes 
5859deaec5SRodney W. Grimes typedef struct __kvm kvm_t;
5959deaec5SRodney W. Grimes 
6059deaec5SRodney W. Grimes struct kinfo_proc;
61b245b90aSBruce Evans struct proc;
62b245b90aSBruce Evans 
6345908a6aSBruce Evans struct kvm_swap {
64b8808468SMatthew Dillon 	char	ksw_devname[32];
65b8808468SMatthew Dillon 	int	ksw_used;
66b8808468SMatthew Dillon 	int	ksw_total;
67b8808468SMatthew Dillon 	int	ksw_flags;
68b8808468SMatthew Dillon 	int	ksw_reserved1;
69b8808468SMatthew Dillon 	int	ksw_reserved2;
7045908a6aSBruce Evans };
71b8808468SMatthew Dillon 
72b8808468SMatthew Dillon #define SWIF_DUMP_TREE	0x0001
73b8808468SMatthew Dillon #define SWIF_DEV_PREFIX	0x0002
74b8808468SMatthew Dillon 
75b245b90aSBruce Evans __BEGIN_DECLS
7659deaec5SRodney W. Grimes int	  kvm_close __P((kvm_t *));
7759deaec5SRodney W. Grimes char	**kvm_getargv __P((kvm_t *, const struct kinfo_proc *, int));
7859deaec5SRodney W. Grimes char	**kvm_getenvv __P((kvm_t *, const struct kinfo_proc *, int));
7959deaec5SRodney W. Grimes char	 *kvm_geterr __P((kvm_t *));
8059deaec5SRodney W. Grimes char	 *kvm_getfiles __P((kvm_t *, int, int, int *));
8145908a6aSBruce Evans int	  kvm_getloadavg __P((kvm_t *, double [], int));
8259deaec5SRodney W. Grimes struct kinfo_proc *
8359deaec5SRodney W. Grimes 	  kvm_getprocs __P((kvm_t *, int, int, int *));
8445908a6aSBruce Evans int	  kvm_getswapinfo __P((kvm_t *, struct kvm_swap *, int, int));
8559deaec5SRodney W. Grimes int	  kvm_nlist __P((kvm_t *, struct nlist *));
8659deaec5SRodney W. Grimes kvm_t	 *kvm_open
8759deaec5SRodney W. Grimes 	    __P((const char *, const char *, const char *, int, const char *));
8859deaec5SRodney W. Grimes kvm_t	 *kvm_openfiles
8959deaec5SRodney W. Grimes 	    __P((const char *, const char *, const char *, int, char *));
904fab6203SDoug Rabson ssize_t	  kvm_read __P((kvm_t *, unsigned long, void *, size_t));
9115f7fc2cSRodney W. Grimes ssize_t	  kvm_uread
92b245b90aSBruce Evans 	    __P((kvm_t *, const struct proc *, unsigned long, char *, size_t));
93b245b90aSBruce Evans ssize_t	  kvm_write __P((kvm_t *, unsigned long, const void *, size_t));
9459deaec5SRodney W. Grimes __END_DECLS
9559deaec5SRodney W. Grimes 
9659deaec5SRodney W. Grimes #endif /* !_KVM_H_ */
97