source: trunk/third/sysinfo/kvm.h @ 12269

Revision 12269, 613 bytes checked in by ghudson, 26 years ago (diff)
This commit was generated by cvs2svn to compensate for changes in r12268, which included commits to RCS files with non-trunk default branches.
Line 
1/*
2 * Copyright (c) 1992-1998 Michael A. Cooper.
3 * This software may be freely used and distributed provided it is not
4 * sold for profit or used in part or in whole for commercial gain
5 * without prior written agreement, and the author is credited
6 * appropriately.
7 */
8
9#ifndef __kvm_h__
10#define __kvm_h__
11/*
12 * $Revision: 1.1.1.3 $
13 */
14
15struct _kvmd {
16    int                 kmemd;
17    char               *namelist;
18    char               *vmfile;
19};
20typedef struct _kvmd kvm_t;
21
22extern kvm_t           *kvm_open();
23extern int              kvm_close();
24extern int              kvm_nlist();
25extern int              kvm_read();
26extern int              kvm_write();
27
28#endif /* __kvm_h__ */
Note: See TracBrowser for help on using the repository browser.