xref: /openbsd-src/lib/libkvm/kvm_alpha.c (revision a4afd6dad3fba28f80e70208181c06c482259988)
1 /*	$OpenBSD: kvm_alpha.c,v 1.2 1996/05/05 14:56:50 deraadt Exp $ */
2 /*	$NetBSD: kvm_alpha.c,v 1.2 1995/09/29 03:57:48 cgd Exp $	*/
3 
4 /*
5  * Copyright (c) 1994, 1995 Carnegie-Mellon University.
6  * All rights reserved.
7  *
8  * Author: Chris G. Demetriou
9  *
10  * Permission to use, copy, modify and distribute this software and
11  * its documentation is hereby granted, provided that both the copyright
12  * notice and this permission notice appear in all copies of the
13  * software, derivative works or modified versions, and any portions
14  * thereof, and that both notices appear in supporting documentation.
15  *
16  * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
17  * CONDITION.  CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND
18  * FOR ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
19  *
20  * Carnegie Mellon requests users of this software to return to
21  *
22  *  Software Distribution Coordinator  or  Software.Distribution@CS.CMU.EDU
23  *  School of Computer Science
24  *  Carnegie Mellon University
25  *  Pittsburgh PA 15213-3890
26  *
27  * any improvements or extensions that they make and grant Carnegie the
28  * rights to redistribute these changes.
29  */
30 
31 #include <sys/param.h>
32 #include <sys/user.h>
33 #include <sys/proc.h>
34 #include <sys/stat.h>
35 #include <unistd.h>
36 #include <nlist.h>
37 #include <kvm.h>
38 
39 #include <vm/vm.h>
40 #include <vm/vm_param.h>
41 
42 #include <limits.h>
43 #include <db.h>
44 
45 #include "kvm_private.h"
46 
47 void
48 _kvm_freevtop(kd)
49 	kvm_t *kd;
50 {
51 
52 }
53 
54 int
55 _kvm_initvtop(kd)
56 	kvm_t *kd;
57 {
58 
59 	return (0);
60 }
61 
62 int
63 _kvm_kvatop(kd, va, pa)
64 	kvm_t *kd;
65 	u_long va;
66 	u_long *pa;
67 {
68 
69 	/* don't forget k0seg translations! */
70 
71 	return (0);
72 }
73