[BACK]Return to pmon.h CVS log [TXT][DIR] Up to [Development] / linux-2.6-xfs / include / asm-mips

File: [Development] / linux-2.6-xfs / include / asm-mips / pmon.h (download)

Revision 1.2, Mon Aug 16 03:52:41 2004 UTC (13 years, 2 months ago) by nathans
Branch: MAIN
Changes since 1.1: +3 -0 lines

Merge up to 2.6.8.1

/*
 * This file is subject to the terms and conditions of the GNU General Public
 * License.  See the file "COPYING" in the main directory of this archive
 * for more details.
 *
 * Copyright (C) 2004 by Ralf Baechle
 */
#ifndef _ASM_PMON_H
#define _ASM_PMON_H

struct callvectors {
	int	(*open) (char*, int, int);		/*	 0 */
	int	(*close) (int);				/*	 4 */
	int	(*read) (int, void*, int);		/*	 8 */
	int	(*write) (int, void*, int);		/*	12 */
	off_t	(*lseek) (int, off_t, int);		/*	16 */
	int	(*printf) (const char*, ...);		/*	20 */
	void	(*cacheflush) (void);			/*	24 */
	char*	(*gets) (char*);			/*	28 */
	int	(*cpustart) (int, void *, int, int);	/*	32 */
};

extern struct callvectors *debug_vectors;

#endif /* _ASM_PMON_H */