1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
// Copyright 2003 John Kasunich
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
/***********************************************************************
* PROC_FS MACROS *
************************************************************************/
/* proc print macros - Contributed by: Erwin Rol (erwin@muffin.org)
and shamelessly ripped from rtai_proc_fs.h, part of the RTAI
project. See http://www.rtai.org for more details.
macro that holds the local variables that
we use in the PROC_PRINT_* macros. We have
this macro so we can add variables with out
changing the users of this macro, of course
only when the names don't colide!
*/
/* macro that prints in the procfs read buffer.
this macro expects the function arguments to be
named as follows.
static int FOO(char *page, char **start,
off_t off, int count, int *eof, void *data) */
/* macro to leave the read function from another
place than at the end. */
/* macro that should only used once at the end of the
read function, to return from another place in the
read function use the PROC_PRINT_RETURN macro. */
/* CONFIG_PROC_FS */
/* PROCFS_MACROS_H */