summaryrefslogtreecommitdiff
path: root/gdb/proc-utils.h
diff options
context:
space:
mode:
Diffstat (limited to 'gdb/proc-utils.h')
-rw-r--r--gdb/proc-utils.h36
1 files changed, 17 insertions, 19 deletions
diff --git a/gdb/proc-utils.h b/gdb/proc-utils.h
index 25785709229..48c5026035a 100644
--- a/gdb/proc-utils.h
+++ b/gdb/proc-utils.h
@@ -56,7 +56,7 @@ extern void proc_prettyfprint_signal (FILE *file, int signo, int verbose);
extern void proc_prettyfprint_flags (FILE *file, unsigned long flags,
int verbose);
-extern void proc_prettyfprint_why (FILE *file, unsigned long why,
+extern void proc_prettyfprint_why (FILE *file, unsigned long why,
unsigned long what, int verbose);
extern void proc_prettyfprint_fault (FILE *file, int faultno, int verbose);
@@ -66,7 +66,6 @@ extern void proc_prettyfprint_syscalls (FILE *file, sysset_t *sysset,
extern void proc_prettyfprint_status (long, int, int, int);
-
/* From proc-flags.c */
/*
@@ -78,20 +77,19 @@ extern void proc_prettyprint_flags (unsigned long flags, int verbose);
extern void proc_prettyfprint_flags (FILE *file, unsigned long flags,
int verbose);
-
/* From proc-api.c */
/*
* Trace functions for /proc api.
*/
-extern int write_with_trace (int, void *, size_t, char *, int);
-extern off_t lseek_with_trace (int, off_t, int, char *, int);
-extern int ioctl_with_trace (int, long, void *, char *, int);
-extern pid_t wait_with_trace (int *, char *, int);
-extern int open_with_trace (char *, int, char *, int);
-extern int close_with_trace (int, char *, int);
-extern void procfs_note (const char *, const char *, int);
+extern int write_with_trace (int, void *, size_t, char *, int);
+extern off_t lseek_with_trace (int, off_t, int, char *, int);
+extern int ioctl_with_trace (int, long, void *, char *, int);
+extern pid_t wait_with_trace (int *, char *, int);
+extern int open_with_trace (char *, int, char *, int);
+extern int close_with_trace (int, char *, int);
+extern void procfs_note (const char *, const char *, int);
#ifdef PROCFS_TRACE
/*
@@ -102,16 +100,16 @@ extern void procfs_note (const char *, const char *, int);
* with the older version of procfs.
*/
-#define write(X,Y,Z) write_with_trace (X, Y, Z, __FILE__, __LINE__)
-#define lseek(X,Y,Z) lseek_with_trace (X, Y, Z, __FILE__, __LINE__)
-#define ioctl(X,Y,Z) ioctl_with_trace (X, Y, Z, __FILE__, __LINE__)
-#define open(X,Y) open_with_trace (X, Y, __FILE__, __LINE__)
-#define close(X) close_with_trace (X, __FILE__, __LINE__)
-#define wait(X) wait_with_trace (X, __FILE__, __LINE__)
+#define write(X, Y, Z) write_with_trace (X, Y, Z, __FILE__, __LINE__)
+#define lseek(X, Y, Z) lseek_with_trace (X, Y, Z, __FILE__, __LINE__)
+#define ioctl(X, Y, Z) ioctl_with_trace (X, Y, Z, __FILE__, __LINE__)
+#define open(X, Y) open_with_trace (X, Y, __FILE__, __LINE__)
+#define close(X) close_with_trace (X, __FILE__, __LINE__)
+#define wait(X) wait_with_trace (X, __FILE__, __LINE__)
#endif
-#define PROCFS_NOTE(X) procfs_note (X, __FILE__, __LINE__)
-#define PROC_PRETTYFPRINT_STATUS(X,Y,Z,T) \
- proc_prettyfprint_status (X, Y, Z, T)
+#define PROCFS_NOTE(X) procfs_note (X, __FILE__, __LINE__)
+#define PROC_PRETTYFPRINT_STATUS(X, Y, Z, T) \
+ proc_prettyfprint_status (X, Y, Z, T)
/* Define the type (and more importantly the width) of the control
word used to write to the /proc/PID/ctl file. */