xref: /freebsd/lib/libkvm/kvm.h (revision b448b67bbb8f8f3d1946803516cefd5850a02e86)
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  * 4. Neither the name of the University nor the names of its contributors
1459deaec5SRodney W. Grimes  *    may be used to endorse or promote products derived from this software
1559deaec5SRodney W. Grimes  *    without specific prior written permission.
1659deaec5SRodney W. Grimes  *
1759deaec5SRodney W. Grimes  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
1859deaec5SRodney W. Grimes  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
1959deaec5SRodney W. Grimes  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
2059deaec5SRodney W. Grimes  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
2159deaec5SRodney W. Grimes  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
2259deaec5SRodney W. Grimes  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
2359deaec5SRodney W. Grimes  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
2459deaec5SRodney W. Grimes  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
2559deaec5SRodney W. Grimes  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
2659deaec5SRodney W. Grimes  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
2759deaec5SRodney W. Grimes  * SUCH DAMAGE.
2859deaec5SRodney W. Grimes  *
2959deaec5SRodney W. Grimes  *	@(#)kvm.h	8.1 (Berkeley) 6/2/93
30a4add9a9SPeter Wemm  * $FreeBSD$
3159deaec5SRodney W. Grimes  */
3259deaec5SRodney W. Grimes 
3359deaec5SRodney W. Grimes #ifndef _KVM_H_
3459deaec5SRodney W. Grimes #define	_KVM_H_
3559deaec5SRodney W. Grimes 
3695a7753bSBruce Evans #include <sys/cdefs.h>
37*b448b67bSGleb Smirnoff #include <sys/types.h>
3895a7753bSBruce Evans #include <nlist.h>
3995a7753bSBruce Evans 
4059deaec5SRodney W. Grimes /* Default version symbol. */
4159deaec5SRodney W. Grimes #define	VRS_SYM		"_version"
4259deaec5SRodney W. Grimes #define	VRS_KEY		"VERSION"
4359deaec5SRodney W. Grimes 
44abbd8902SMike Barcroft #ifndef _SIZE_T_DECLARED
45abbd8902SMike Barcroft typedef	__size_t	size_t;
46abbd8902SMike Barcroft #define	_SIZE_T_DECLARED
47b245b90aSBruce Evans #endif
48b245b90aSBruce Evans 
49abbd8902SMike Barcroft #ifndef _SSIZE_T_DECLARED
50abbd8902SMike Barcroft typedef	__ssize_t	ssize_t;
51abbd8902SMike Barcroft #define	_SSIZE_T_DECLARED
52b245b90aSBruce Evans #endif
5359deaec5SRodney W. Grimes 
5459deaec5SRodney W. Grimes typedef struct __kvm kvm_t;
5559deaec5SRodney W. Grimes 
5659deaec5SRodney W. Grimes struct kinfo_proc;
57b245b90aSBruce Evans struct proc;
58b245b90aSBruce Evans 
5945908a6aSBruce Evans struct kvm_swap {
60b8808468SMatthew Dillon 	char	ksw_devname[32];
61b8808468SMatthew Dillon 	int	ksw_used;
62b8808468SMatthew Dillon 	int	ksw_total;
63b8808468SMatthew Dillon 	int	ksw_flags;
64b8808468SMatthew Dillon 	int	ksw_reserved1;
65b8808468SMatthew Dillon 	int	ksw_reserved2;
6645908a6aSBruce Evans };
67b8808468SMatthew Dillon 
68b8808468SMatthew Dillon #define SWIF_DEV_PREFIX	0x0002
69b8808468SMatthew Dillon 
70b245b90aSBruce Evans __BEGIN_DECLS
7169160b1eSDavid E. O'Brien int	  kvm_close(kvm_t *);
7257a6239fSRobert Watson int	  kvm_dpcpu_setcpu(kvm_t *, unsigned int);
7369160b1eSDavid E. O'Brien char	**kvm_getargv(kvm_t *, const struct kinfo_proc *, int);
74f110b23bSJohn Baldwin int	  kvm_getcptime(kvm_t *, long *);
7569160b1eSDavid E. O'Brien char	**kvm_getenvv(kvm_t *, const struct kinfo_proc *, int);
7669160b1eSDavid E. O'Brien char	 *kvm_geterr(kvm_t *);
7769160b1eSDavid E. O'Brien char	 *kvm_getfiles(kvm_t *, int, int, int *);
7869160b1eSDavid E. O'Brien int	  kvm_getloadavg(kvm_t *, double [], int);
79794a9a6cSJohn Baldwin int	  kvm_getmaxcpu(kvm_t *);
80794a9a6cSJohn Baldwin void	 *kvm_getpcpu(kvm_t *, int);
812a213404SGleb Smirnoff uint64_t  kvm_counter_u64_fetch(kvm_t *, u_long);
8259deaec5SRodney W. Grimes struct kinfo_proc *
8369160b1eSDavid E. O'Brien 	  kvm_getprocs(kvm_t *, int, int, int *);
8469160b1eSDavid E. O'Brien int	  kvm_getswapinfo(kvm_t *, struct kvm_swap *, int, int);
8569160b1eSDavid E. O'Brien int	  kvm_nlist(kvm_t *, struct nlist *);
8659deaec5SRodney W. Grimes kvm_t	 *kvm_open
8769160b1eSDavid E. O'Brien 	    (const char *, const char *, const char *, int, const char *);
8859deaec5SRodney W. Grimes kvm_t	 *kvm_openfiles
8969160b1eSDavid E. O'Brien 	    (const char *, const char *, const char *, int, char *);
9069160b1eSDavid E. O'Brien ssize_t	  kvm_read(kvm_t *, unsigned long, void *, size_t);
912a213404SGleb Smirnoff ssize_t	  kvm_read_zpcpu(kvm_t *, void *, u_long, size_t, int);
9215f7fc2cSRodney W. Grimes ssize_t	  kvm_uread
93c10970ddSUlrich Spörlein 	    (kvm_t *, const struct kinfo_proc *, unsigned long, char *, size_t);
9469160b1eSDavid E. O'Brien ssize_t	  kvm_write(kvm_t *, unsigned long, const void *, size_t);
9559deaec5SRodney W. Grimes __END_DECLS
9659deaec5SRodney W. Grimes 
9759deaec5SRodney W. Grimes #endif /* !_KVM_H_ */
98