OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [tags/] [gnu-src/] [gdb-7.2/] [gdb-7.2-or32-1.0rc3/] [gdb/] [proc-why.c] - Diff between revs 330 and 513

Only display areas with differences | Details | Blame | View Log

Rev 330 Rev 513
/* Machine-independent support for SVR4 /proc (process file system)
/* Machine-independent support for SVR4 /proc (process file system)
 
 
   Copyright (C) 1999, 2000, 2004, 2007, 2008, 2009, 2010
   Copyright (C) 1999, 2000, 2004, 2007, 2008, 2009, 2010
   Free Software Foundation, Inc.
   Free Software Foundation, Inc.
 
 
   Written by Michael Snyder at Cygnus Solutions.
   Written by Michael Snyder at Cygnus Solutions.
   Based on work by Fred Fish, Stu Grossman, Geoff Noer, and others.
   Based on work by Fred Fish, Stu Grossman, Geoff Noer, and others.
 
 
   This program is free software; you can redistribute it and/or modify
   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
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation; either version 3 of the License, or
   the Free Software Foundation; either version 3 of the License, or
   (at your option) any later version.
   (at your option) any later version.
 
 
   This program is distributed in the hope that it will be useful,
   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.
   GNU General Public License for more details.
 
 
   You should have received a copy of the GNU General Public License
   You should have received a copy of the GNU General Public License
   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
 
 
#include "defs.h"
#include "defs.h"
 
 
#ifdef NEW_PROC_API
#ifdef NEW_PROC_API
#define _STRUCTURED_PROC 1
#define _STRUCTURED_PROC 1
#endif
#endif
 
 
#include <stdio.h>
#include <stdio.h>
#include <sys/types.h>
#include <sys/types.h>
#include <sys/procfs.h>
#include <sys/procfs.h>
 
 
#include "proc-utils.h"
#include "proc-utils.h"
 
 
/* Much of the information used in the /proc interface, particularly
/* Much of the information used in the /proc interface, particularly
   for printing status information, is kept as tables of structures of
   for printing status information, is kept as tables of structures of
   the following form.  These tables can be used to map numeric values
   the following form.  These tables can be used to map numeric values
   to their symbolic names and to a string that describes their
   to their symbolic names and to a string that describes their
   specific use.  */
   specific use.  */
 
 
struct trans
struct trans
{
{
  int value;                    /* The numeric value.  */
  int value;                    /* The numeric value.  */
  char *name;                   /* The equivalent symbolic value.  */
  char *name;                   /* The equivalent symbolic value.  */
  char *desc;                   /* Short description of value.  */
  char *desc;                   /* Short description of value.  */
};
};
 
 
/* Translate values in the pr_why field of a `struct prstatus' or
/* Translate values in the pr_why field of a `struct prstatus' or
   `struct lwpstatus'.  */
   `struct lwpstatus'.  */
 
 
static struct trans pr_why_table[] =
static struct trans pr_why_table[] =
{
{
#if defined (PR_REQUESTED)
#if defined (PR_REQUESTED)
  /* All platforms.  */
  /* All platforms.  */
  { PR_REQUESTED, "PR_REQUESTED",
  { PR_REQUESTED, "PR_REQUESTED",
    "Directed to stop by debugger via P(IO)CSTOP or P(IO)CWSTOP" },
    "Directed to stop by debugger via P(IO)CSTOP or P(IO)CWSTOP" },
#endif
#endif
#if defined (PR_SIGNALLED)
#if defined (PR_SIGNALLED)
  /* All platforms.  */
  /* All platforms.  */
  { PR_SIGNALLED, "PR_SIGNALLED", "Receipt of a traced signal" },
  { PR_SIGNALLED, "PR_SIGNALLED", "Receipt of a traced signal" },
#endif
#endif
#if defined (PR_SYSENTRY)
#if defined (PR_SYSENTRY)
  /* All platforms.  */
  /* All platforms.  */
  { PR_SYSENTRY, "PR_SYSENTRY", "Entry to a traced system call" },
  { PR_SYSENTRY, "PR_SYSENTRY", "Entry to a traced system call" },
#endif
#endif
#if defined (PR_SYSEXIT)
#if defined (PR_SYSEXIT)
  /* All platforms.  */
  /* All platforms.  */
  { PR_SYSEXIT, "PR_SYSEXIT", "Exit from a traced system call" },
  { PR_SYSEXIT, "PR_SYSEXIT", "Exit from a traced system call" },
#endif
#endif
#if defined (PR_JOBCONTROL)
#if defined (PR_JOBCONTROL)
  /* All platforms.  */
  /* All platforms.  */
  { PR_JOBCONTROL, "PR_JOBCONTROL", "Default job control stop signal action" },
  { PR_JOBCONTROL, "PR_JOBCONTROL", "Default job control stop signal action" },
#endif
#endif
#if defined (PR_FAULTED)
#if defined (PR_FAULTED)
  /* All platforms.  */
  /* All platforms.  */
  { PR_FAULTED, "PR_FAULTED", "Incurred a traced hardware fault" },
  { PR_FAULTED, "PR_FAULTED", "Incurred a traced hardware fault" },
#endif
#endif
#if defined (PR_SUSPENDED)
#if defined (PR_SUSPENDED)
  /* Solaris and UnixWare.  */
  /* Solaris and UnixWare.  */
  { PR_SUSPENDED, "PR_SUSPENDED", "Process suspended" },
  { PR_SUSPENDED, "PR_SUSPENDED", "Process suspended" },
#endif
#endif
#if defined (PR_CHECKPOINT)
#if defined (PR_CHECKPOINT)
  /* Solaris only.  */
  /* Solaris only.  */
  { PR_CHECKPOINT, "PR_CHECKPOINT", "Process stopped at checkpoint" },
  { PR_CHECKPOINT, "PR_CHECKPOINT", "Process stopped at checkpoint" },
#endif
#endif
#if defined (PR_FORKSTOP)
#if defined (PR_FORKSTOP)
  /* OSF/1 only.  */
  /* OSF/1 only.  */
  { PR_FORKSTOP, "PR_FORKSTOP", "Process stopped at end of fork call" },
  { PR_FORKSTOP, "PR_FORKSTOP", "Process stopped at end of fork call" },
#endif
#endif
#if defined (PR_TCRSTOP)
#if defined (PR_TCRSTOP)
  /* OSF/1 only.  */
  /* OSF/1 only.  */
  { PR_TCRSTOP, "PR_TCRSTOP", "Process stopped on thread creation" },
  { PR_TCRSTOP, "PR_TCRSTOP", "Process stopped on thread creation" },
#endif
#endif
#if defined (PR_TTSTOP)
#if defined (PR_TTSTOP)
  /* OSF/1 only.  */
  /* OSF/1 only.  */
  { PR_TTSTOP, "PR_TTSTOP", "Process stopped on thread termination" },
  { PR_TTSTOP, "PR_TTSTOP", "Process stopped on thread termination" },
#endif
#endif
#if defined (PR_DEAD)
#if defined (PR_DEAD)
  /* OSF/1 only.  */
  /* OSF/1 only.  */
  { PR_DEAD, "PR_DEAD", "Process stopped in exit system call" },
  { PR_DEAD, "PR_DEAD", "Process stopped in exit system call" },
#endif
#endif
};
};
 
 
/* Pretty-print the pr_why field of a `struct prstatus' or `struct
/* Pretty-print the pr_why field of a `struct prstatus' or `struct
   lwpstatus'.  */
   lwpstatus'.  */
 
 
void
void
proc_prettyfprint_why (FILE *file, unsigned long why, unsigned long what,
proc_prettyfprint_why (FILE *file, unsigned long why, unsigned long what,
                       int verbose)
                       int verbose)
{
{
  int i;
  int i;
 
 
  if (why == 0)
  if (why == 0)
    return;
    return;
 
 
  for (i = 0; i < ARRAY_SIZE (pr_why_table); i++)
  for (i = 0; i < ARRAY_SIZE (pr_why_table); i++)
    if (why == pr_why_table[i].value)
    if (why == pr_why_table[i].value)
      {
      {
        fprintf (file, "%s ", pr_why_table[i].name);
        fprintf (file, "%s ", pr_why_table[i].name);
        if (verbose)
        if (verbose)
          fprintf (file, ": %s ", pr_why_table[i].desc);
          fprintf (file, ": %s ", pr_why_table[i].desc);
 
 
        switch (why) {
        switch (why) {
#ifdef PR_REQUESTED
#ifdef PR_REQUESTED
        case PR_REQUESTED:
        case PR_REQUESTED:
          break;                /* Nothing more to print.  */
          break;                /* Nothing more to print.  */
#endif
#endif
#ifdef PR_SIGNALLED
#ifdef PR_SIGNALLED
        case PR_SIGNALLED:
        case PR_SIGNALLED:
          proc_prettyfprint_signal (file, what, verbose);
          proc_prettyfprint_signal (file, what, verbose);
          break;
          break;
#endif
#endif
#ifdef PR_FAULTED
#ifdef PR_FAULTED
        case PR_FAULTED:
        case PR_FAULTED:
          proc_prettyfprint_fault (file, what, verbose);
          proc_prettyfprint_fault (file, what, verbose);
          break;
          break;
#endif
#endif
#ifdef PR_SYSENTRY
#ifdef PR_SYSENTRY
        case PR_SYSENTRY:
        case PR_SYSENTRY:
          fprintf (file, "Entry to ");
          fprintf (file, "Entry to ");
          proc_prettyfprint_syscall (file, what, verbose);
          proc_prettyfprint_syscall (file, what, verbose);
          break;
          break;
#endif
#endif
#ifdef PR_SYSEXIT
#ifdef PR_SYSEXIT
        case PR_SYSEXIT:
        case PR_SYSEXIT:
          fprintf (file, "Exit from ");
          fprintf (file, "Exit from ");
          proc_prettyfprint_syscall (file, what, verbose);
          proc_prettyfprint_syscall (file, what, verbose);
          break;
          break;
#endif
#endif
#ifdef PR_JOBCONTROL
#ifdef PR_JOBCONTROL
        case PR_JOBCONTROL:
        case PR_JOBCONTROL:
          proc_prettyfprint_signal (file, what, verbose);
          proc_prettyfprint_signal (file, what, verbose);
          break;
          break;
#endif
#endif
#ifdef PR_DEAD
#ifdef PR_DEAD
        case PR_DEAD:
        case PR_DEAD:
          fprintf (file, "Exit status: %ld\n", what);
          fprintf (file, "Exit status: %ld\n", what);
          break;
          break;
#endif
#endif
        default:
        default:
          fprintf (file, "Unknown why %ld, what %ld\n", why, what);
          fprintf (file, "Unknown why %ld, what %ld\n", why, what);
          break;
          break;
        }
        }
        fprintf (file, "\n");
        fprintf (file, "\n");
 
 
        return;
        return;
      }
      }
 
 
  fprintf (file, "Unknown pr_why.\n");
  fprintf (file, "Unknown pr_why.\n");
}
}
 
 
void
void
proc_prettyprint_why (unsigned long why, unsigned long what, int verbose)
proc_prettyprint_why (unsigned long why, unsigned long what, int verbose)
{
{
  proc_prettyfprint_why (stdout, why, what, verbose);
  proc_prettyfprint_why (stdout, why, what, verbose);
}
}
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.