X-Git-Url: http://drtracing.org/?a=blobdiff_plain;f=gdb%2Fproc-utils.h;h=c0fc1353d533951613e42c67d901d145fe020482;hb=708a2ffff5cc2d280968a6b28268d8276d391bb4;hp=8558fdf77279a7c5a5d8bfb95dc2afd48b796a5a;hpb=01f0fe5e0450edf168c1f612feb93cf588e4e7ea;p=deliverable%2Fbinutils-gdb.git diff --git a/gdb/proc-utils.h b/gdb/proc-utils.h index 8558fdf772..c0fc1353d5 100644 --- a/gdb/proc-utils.h +++ b/gdb/proc-utils.h @@ -1,23 +1,25 @@ /* Machine independent support for SVR4 /proc (process file system) for GDB. - Copyright (C) 1999, 2000 Free Software Foundation, Inc. + Copyright (C) 1999-2020 Free Software Foundation, Inc. -This file is part of GDB. + This file is part of GDB. -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 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 3 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. + 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. */ + You should have received a copy of the GNU General Public License + along with this program. If not, see . */ +#ifndef PROC_UTILS_H +#define PROC_UTILS_H + +/* From proc-why.c */ /* * Pretty-print functions for /proc data @@ -30,7 +32,16 @@ extern void proc_prettyprint_syscalls (sysset_t *sysset, int verbose); extern void proc_prettyprint_syscall (int num, int verbose); -extern void proc_prettyprint_flags (unsigned long flags, int verbose); +extern void proc_prettyprint_signalset (sigset_t *sigset, int verbose); + +extern void proc_prettyprint_signal (int signo, int verbose); + +extern void proc_prettyprint_faultset (fltset_t *fltset, int verbose); + +extern void proc_prettyprint_fault (int faultno, int verbose); + +extern void proc_prettyprint_actionset (struct sigaction *actions, + int verbose); extern void proc_prettyfprint_signalset (FILE *file, sigset_t *sigset, int verbose); @@ -55,6 +66,21 @@ extern void proc_prettyfprint_syscalls (FILE *file, sysset_t *sysset, extern void proc_prettyfprint_status (long, int, int, int); + +/* From proc-flags.c */ + +/* + * Pretty-print the prstatus flags. + */ + +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. */ @@ -65,7 +91,7 @@ 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 (char *, char *, int); +extern void procfs_note (const char *, const char *, int); #ifdef PROCFS_TRACE /* @@ -88,9 +114,7 @@ extern void procfs_note (char *, char *, int); 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. */ -#if defined (PROC_CTL_WORD_TYPE) -typedef PROC_CTL_WORD_TYPE procfs_ctl_t; -#else + word used to write to the /proc/PID/ctl file. */ typedef long procfs_ctl_t; -#endif + +#endif /* PROC_UTILS_H */