[BACK]Return to db_access.h CVS log [TXT][DIR] Up to [local] / sys / ddb

Annotation of sys/ddb/db_access.h, Revision 1.1

1.1     ! nbrk        1: /*     $OpenBSD: db_access.h,v 1.5 2002/03/14 01:26:51 millert Exp $   */
        !             2: /*     $NetBSD: db_access.h,v 1.6 1994/10/09 08:29:57 mycroft Exp $    */
        !             3:
        !             4: /*
        !             5:  * Mach Operating System
        !             6:  * Copyright (c) 1993,1992,1991,1990 Carnegie Mellon University
        !             7:  * All Rights Reserved.
        !             8:  *
        !             9:  * Permission to use, copy, modify and distribute this software and its
        !            10:  * documentation is hereby granted, provided that both the copyright
        !            11:  * notice and this permission notice appear in all copies of the
        !            12:  * software, derivative works or modified versions, and any portions
        !            13:  * thereof, and that both notices appear in supporting documentation.
        !            14:  *
        !            15:  * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
        !            16:  * CONDITION.  CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND FOR
        !            17:  * ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
        !            18:  *
        !            19:  * Carnegie Mellon requests users of this software to return to
        !            20:  *
        !            21:  *  Software Distribution Coordinator  or  Software.Distribution@CS.CMU.EDU
        !            22:  *  School of Computer Science
        !            23:  *  Carnegie Mellon University
        !            24:  *  Pittsburgh PA 15213-3890
        !            25:  *
        !            26:  * any improvements or extensions that they make and grant Carnegie Mellon
        !            27:  * the rights to redistribute these changes.
        !            28:  *
        !            29:  *     Author: David B. Golub, Carnegie Mellon University
        !            30:  *     Date:   7/90
        !            31:  */
        !            32:
        !            33: /*
        !            34:  * Data access functions for debugger.
        !            35:  */
        !            36: db_expr_t db_get_value(db_addr_t, size_t, boolean_t);
        !            37: void db_put_value(db_addr_t, size_t, db_expr_t);
        !            38:
        !            39: void db_read_bytes(db_addr_t, size_t, char *);
        !            40: void db_write_bytes(db_addr_t, size_t, char *);

CVSweb