GDB (xrefs)
Macros | Functions | Variables
/tmp/gdb-7.10/gdb/darwin-nat-info.c File Reference
#include "defs.h"
#include "symtab.h"
#include "gdbtypes.h"
#include "gdbcore.h"
#include "value.h"
#include "gdbcmd.h"
#include "inferior.h"
#include <sys/sysctl.h>
#include "darwin-nat.h"
#include <mach/thread_info.h>
#include <mach/thread_act.h>
#include <mach/task.h>
#include <mach/vm_map.h>
#include <mach/mach_port.h>
#include <mach/mach_init.h>
#include <mach/mach_vm.h>

Go to the source code of this file.

Macros

#define CHECK_ARGS(what, args)
 
#define PRINT_FIELD(structure, field)   printf_unfiltered(_(#field":\t%#lx\n"), (unsigned long) (structure)->field)
 
#define PRINT_TV_FIELD(structure, field)
 
#define task_self   mach_task_self
 
#define task_by_unix_pid   task_for_pid
 
#define port_name_array_t   mach_port_array_t
 
#define port_type_array_t   mach_port_array_t
 

Functions

static void info_mach_tasks_command (char *args, int from_tty)
 
static task_t get_task_from_args (char *args)
 
static void info_mach_task_command (char *args, int from_tty)
 
static void info_mach_ports_command (char *args, int from_tty)
 
static void darwin_debug_port_info (task_t task, mach_port_t port)
 
static void info_mach_port_command (char *args, int from_tty)
 
static void info_mach_threads_command (char *args, int from_tty)
 
static void info_mach_thread_command (char *args, int from_tty)
 
static const char * unparse_protection (vm_prot_t p)
 
static const char * unparse_inheritance (vm_inherit_t i)
 
static const char * unparse_share_mode (unsigned char p)
 
static const char * unparse_user_tag (unsigned int tag)
 
static void darwin_debug_regions (task_t task, mach_vm_address_t address, int max)
 
static void darwin_debug_regions_recurse (task_t task)
 
static void darwin_debug_region (task_t task, mach_vm_address_t address)
 
static void info_mach_regions_command (char *args, int from_tty)
 
static void info_mach_regions_recurse_command (char *args, int from_tty)
 
static void info_mach_region_command (char *exp, int from_tty)
 
static void disp_exception (const darwin_exception_info *info)
 
static void info_mach_exceptions_command (char *args, int from_tty)
 
void _initialize_darwin_info_commands (void)
 

Variables

initialize_file_ftype _initialize_darwin_info_commands
 

Macro Definition Documentation

#define CHECK_ARGS (   what,
  args 
)
Value:
do { \
if ((NULL == args) || ((args[0] != '0') && (args[1] != 'x'))) \
error(_("%s must be specified with 0x..."), what); \
} while (0)
if(!(yy_init))
Definition: ada-lex.c:1072
#define _(String)
Definition: gdb_locale.h:40

Definition at line 50 of file darwin-nat-info.c.

Referenced by info_mach_port_command(), and info_mach_thread_command().

#define port_name_array_t   mach_port_array_t

Definition at line 65 of file darwin-nat-info.c.

Referenced by info_mach_ports_command().

#define port_type_array_t   mach_port_array_t

Definition at line 66 of file darwin-nat-info.c.

Referenced by info_mach_ports_command().

#define PRINT_FIELD (   structure,
  field 
)    printf_unfiltered(_(#field":\t%#lx\n"), (unsigned long) (structure)->field)

Definition at line 55 of file darwin-nat-info.c.

Referenced by info_mach_task_command(), and info_mach_thread_command().

#define PRINT_TV_FIELD (   structure,
  field 
)
Value:
printf_unfiltered(_(#field":\t%u.%06u sec\n"), \
(unsigned) (structure)->field.seconds, \
(unsigned) (structure)->field.microseconds)
#define _(String)
Definition: gdb_locale.h:40
void printf_unfiltered(const char *format,...)
Definition: utils.c:2399

Definition at line 58 of file darwin-nat-info.c.

Referenced by info_mach_task_command().

#define task_by_unix_pid   task_for_pid

Definition at line 64 of file darwin-nat-info.c.

Referenced by info_mach_tasks_command().

#define task_self   mach_task_self

Definition at line 63 of file darwin-nat-info.c.

Referenced by info_mach_ports_command(), and info_mach_threads_command().

Function Documentation

void _initialize_darwin_info_commands ( void  )
static void darwin_debug_port_info ( task_t  task,
mach_port_t  port 
)
static

Definition at line 304 of file darwin-nat-info.c.

References _, len, MACH_CHECK_ERROR, printf_unfiltered(), and status.

Referenced by info_mach_port_command().

static void darwin_debug_region ( task_t  task,
mach_vm_address_t  address 
)
static

Definition at line 696 of file darwin-nat-info.c.

References darwin_debug_regions().

Referenced by info_mach_region_command().

static void darwin_debug_regions ( task_t  task,
mach_vm_address_t  address,
int  max 
)
static
static void darwin_debug_regions_recurse ( task_t  task)
static
static void disp_exception ( const darwin_exception_info info)
static
static task_t get_task_from_args ( char *  args)
static
static void info_mach_exceptions_command ( char *  args,
int  from_tty 
)
static
static void info_mach_port_command ( char *  args,
int  from_tty 
)
static

Definition at line 329 of file darwin-nat-info.c.

References _, CHECK_ARGS, and darwin_debug_port_info().

Referenced by _initialize_darwin_info_commands().

static void info_mach_ports_command ( char *  args,
int  from_tty 
)
static
static void info_mach_region_command ( char *  exp,
int  from_tty 
)
static
static void info_mach_regions_command ( char *  args,
int  from_tty 
)
static

Definition at line 702 of file darwin-nat-info.c.

References darwin_debug_regions(), and get_task_from_args().

Referenced by _initialize_darwin_info_commands().

static void info_mach_regions_recurse_command ( char *  args,
int  from_tty 
)
static
static void info_mach_task_command ( char *  args,
int  from_tty 
)
static
static void info_mach_tasks_command ( char *  args,
int  from_tty 
)
static

Definition at line 69 of file darwin-nat-info.c.

References _, printf_unfiltered(), task_by_unix_pid, xfree(), and xmalloc().

Referenced by _initialize_darwin_info_commands().

static void info_mach_thread_command ( char *  args,
int  from_tty 
)
static
static void info_mach_threads_command ( char *  args,
int  from_tty 
)
static
static const char* unparse_inheritance ( vm_inherit_t  i)
static

Definition at line 428 of file darwin-nat-info.c.

References _.

Referenced by darwin_debug_regions(), and darwin_debug_regions_recurse().

static const char* unparse_protection ( vm_prot_t  p)
static

Definition at line 402 of file darwin-nat-info.c.

Referenced by darwin_debug_regions(), and darwin_debug_regions_recurse().

static const char* unparse_share_mode ( unsigned char  p)
static

Definition at line 444 of file darwin-nat-info.c.

References _.

Referenced by darwin_debug_regions_recurse().

static const char* unparse_user_tag ( unsigned int  tag)
static

Definition at line 468 of file darwin-nat-info.c.

References _.

Referenced by darwin_debug_regions_recurse().

Variable Documentation

initialize_file_ftype _initialize_darwin_info_commands