This commit was manufactured by cvs2svn to create branch 'fedora'.
[linux-2.6.git] / include / asm-mips / pmon.h
1 /*
2  * This file is subject to the terms and conditions of the GNU General Public
3  * License.  See the file "COPYING" in the main directory of this archive
4  * for more details.
5  *
6  * Copyright (C) 2004 by Ralf Baechle
7  */
8 #ifndef _ASM_PMON_H
9 #define _ASM_PMON_H
10
11 struct callvectors {
12         int     (*open) (char*, int, int);              /*       0 */
13         int     (*close) (int);                         /*       4 */
14         int     (*read) (int, void*, int);              /*       8 */
15         int     (*write) (int, void*, int);             /*      12 */
16         off_t   (*lseek) (int, off_t, int);             /*      16 */
17         int     (*printf) (const char*, ...);           /*      20 */
18         void    (*cacheflush) (void);                   /*      24 */
19         char*   (*gets) (char*);                        /*      28 */
20 };
21
22 #endif /* _ASM_PMON_H */