2004-02-01 23:35:24 +01:00
|
|
|
/* Auxiliary vector support for GDB, the GNU debugger.
|
|
|
|
|
2014-01-01 04:54:24 +01:00
|
|
|
Copyright (C) 2004-2014 Free Software Foundation, Inc.
|
2004-02-01 23:35:24 +01:00
|
|
|
|
|
|
|
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
|
2007-08-23 20:08:50 +02:00
|
|
|
the Free Software Foundation; either version 3 of the License, or
|
2004-02-01 23:35:24 +01:00
|
|
|
(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.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
2007-08-23 20:08:50 +02:00
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>. */
|
2004-02-01 23:35:24 +01:00
|
|
|
|
|
|
|
#ifndef AUXV_H
|
|
|
|
#define AUXV_H
|
|
|
|
|
2009-06-07 21:07:08 +02:00
|
|
|
#include "target.h"
|
2004-02-01 23:35:24 +01:00
|
|
|
|
2009-06-07 21:07:08 +02:00
|
|
|
/* See "include/elf/common.h" for the definition of valid AT_* values. */
|
2004-02-01 23:35:24 +01:00
|
|
|
|
|
|
|
/* Read one auxv entry from *READPTR, not reading locations >= ENDPTR.
|
|
|
|
Return 0 if *READPTR is already at the end of the buffer.
|
|
|
|
Return -1 if there is insufficient buffer for a whole entry.
|
|
|
|
Return 1 if an entry was read into *TYPEP and *VALP. */
|
|
|
|
extern int target_auxv_parse (struct target_ops *ops,
|
2005-05-23 20:20:03 +02:00
|
|
|
gdb_byte **readptr, gdb_byte *endptr,
|
2004-02-01 23:35:24 +01:00
|
|
|
CORE_ADDR *typep, CORE_ADDR *valp);
|
|
|
|
|
|
|
|
/* Extract the auxiliary vector entry with a_type matching MATCH.
|
|
|
|
Return zero if no such entry was found, or -1 if there was
|
|
|
|
an error getting the information. On success, return 1 after
|
|
|
|
storing the entry's value field in *VALP. */
|
|
|
|
extern int target_auxv_search (struct target_ops *ops,
|
|
|
|
CORE_ADDR match, CORE_ADDR *valp);
|
|
|
|
|
2010-12-31 20:16:37 +01:00
|
|
|
/* Print the contents of the target's AUXV on the specified file. */
|
2004-02-01 23:35:24 +01:00
|
|
|
extern int fprint_target_auxv (struct ui_file *file, struct target_ops *ops);
|
|
|
|
|
2013-11-04 10:53:56 +01:00
|
|
|
extern target_xfer_partial_ftype memory_xfer_auxv;
|
2004-02-01 23:35:24 +01:00
|
|
|
|
|
|
|
|
|
|
|
#endif
|