diff options
author | Simon Marchi <simon.marchi@polymtl.ca> | 2023-02-08 15:36:23 -0500 |
---|---|---|
committer | Simon Marchi <simon.marchi@polymtl.ca> | 2023-02-08 15:46:02 -0500 |
commit | c583a2520616c2736cffc389c89a48b159366e6c (patch) | |
tree | b4925f26506fcee96c16119431c01760f05db95d /gdb/proc-utils.h | |
parent | ca7f92c2f15b86b09c4a8ad14806bef666308d31 (diff) | |
download | binutils-gdb-users/simark/clang-format.tar.gz |
Run clang-format.shusers/simark/clang-format
Change-Id: Ia948cc26d534b0dd02702244d52434b1a2093968
Diffstat (limited to 'gdb/proc-utils.h')
-rw-r--r-- | gdb/proc-utils.h | 36 |
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. */ |