[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.1, Thu Jun 17 03:20:52 2004 UTC (13 years, 4 months ago) by nathans
Branch: MAIN

Merge up to 2.6.7, and upgrade kdb at the same time.

/*
 * 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 */
};

#endif /* _ASM_PMON_H */