OSDN Git Service

pf3gnuchains/pf3gnuchains4x.git
13 years ago * fhandler_socket.cc (address_in_use): Improve comment readability.
corinna [Mon, 31 Jan 2011 08:53:57 +0000 (08:53 +0000)]
* fhandler_socket.cc (address_in_use): Improve comment readability.

13 years agoPR libgcj/44341
aoliva [Mon, 31 Jan 2011 05:26:01 +0000 (05:26 +0000)]
PR libgcj/44341
* configure.ac: Discard --with-* flags for host when configuring
target libraries for cross build.
* configure: Rebuilt.

13 years agoallow building GDB with Python support on MinGW
brobecke [Mon, 31 Jan 2011 04:42:08 +0000 (04:42 +0000)]
allow building GDB with Python support on MinGW

This makes several adjustements to the configure python-config.py
scripts to deal with the differences between a Unix install of Python
and a Windows install of Python (as downloaded from the Python website).

Differences:

  - The Python executable is directly in the python prefix directory
    as opposed to inside the bin/ subdirectory.

  - The name of the python library is does not have a dot in the version
    number: On Unix, we have libpython2.7, while on Windows, it's
    libpython27.  So the regexp extracting the python version from
    the Python lib filename had to be adjusted slightly.

    Also, the tests checking the name of the libpython had to be
    adjusted to allow for that.

  - There are no link options following the -lpython<version> switch
    on Windows, but the regexp extracting the python version was
    using it as a delimiter.  It had to be removed.

  - python-config.py does not work on Windows, mostly because
    some sysconfig variables are missing.  They are not necessary
    so the script was adapted to skip them if not defined.

  - The paths returned by python-config.py follow the Windows filename
    convention in terms of the directory separator, and this is causing
    trouble when the build environment is cygwin (while the compiler
    and Python are MinGW).  We could have fixed that in the configure
    script, but it felt simpler to do so in python-config.py

gdb/ChangeLog:

        * configure.ac: Add handling of Python distribution on Windows.
        * python-config.py: If the LIBS, SYSLIBS, LIBPL and/or LINKFORSHARED
        sysconfig variables are not defined, then do not use them.
        On Windows, if LIBPL is not defined, then use prefix + '/libs'
        instead.  On Windows, return all paths using forward-slashes
        rather than backslashes.

13 years agodo not use python<version> subdir when including Python .h file
brobecke [Mon, 31 Jan 2011 04:41:21 +0000 (04:41 +0000)]
do not use python<version> subdir when including Python .h file

This is preparation work for being able to build GDB with Python
support on MinGW.

So far, the "python<version>" subdirectory needs to be specified
when including a Python header file.  In order to do that, we have
some special configury that tweaks the include path returned by
python-config.py such that the use of the subdirectory in the include
is necessary.  This was done in order to protect ourselves from
possible filename conflicts, since some of the filenames chosen by
Python were a little generic.

The problem is that this cannot work with a standard Python install
on MinGW systems.  On such systems, the .h files are located in
<python_prefix>/include.  So, in preparation for allowing us to build
GDB on MinGW with Python support enabled, this patch changes the
requirement to provide the "python<version>" subdirectory in the
include directive.

The positive consequence is that we no longer need to have a set
of #include directives for each version of Python, since the include
directive is now the same for all versions of Python.  However, the
downside is that we are losing the level of protection we were trying
to achieve by forcing the subdirectory in the include directive.
In order to reduce a bit the consequences of a possible conflict,
this patch also changes the location where the -I/path/to/python
switch goes, to be last in the list (suggested by Doug Evans).

One last change is the fact that we are now including Python.h
and all other Python include headers using angle brackets rather
than double-quotes.  This fixes a problem on case-insensitive
systems where #include "Python.h" causes our gdb/python/python.h
header to be included instead of Python's <Python.h> header.

gdb/ChangeLog:

* configure.ac: Remove fallback behavior for building
against Python.  Remove tweaking of Python include path.
Add PYTHON_CPPFLAGS and PYTHON_LIBS substitution.
(AC_TRY_LIBPYTHON):  Adjust program used in linking test.
If link is successful, set PYTHON_CPPFLAGS and PYTHON_LIBS.
Always restore CPPFLAGS and LIBS after linking test.
* configure: Regenerated.
* Makefile.in (INTERNAL_CPPFLAGS): Add @PYTHON_CPPFLAGS@.
(INSTALLED_LIBS, CLIBS): Add @PYTHON_LIBS@.
* python/python-internal.h: Adjust includes of Python .h files.

13 years agoAdd missing i18n markup in tracepoint.c:traceframe_walk_blocks
brobecke [Mon, 31 Jan 2011 03:12:05 +0000 (03:12 +0000)]
Add missing i18n markup in tracepoint.c:traceframe_walk_blocks

gdb/ChangeLog:

  * tracepoint.c (traceframe_walk_blocks): Add missing i18n markup
  in error message.

13 years agofix typo during interactive_mode check in gdb_has_a_terminal
brobecke [Mon, 31 Jan 2011 03:11:35 +0000 (03:11 +0000)]
fix typo during interactive_mode check in gdb_has_a_terminal

Discovered by Pierre Muller.

gdb/ChangeLog:

        * inflow.c (gdb_has_a_terminal): Fix typo in interactive_mode
        value test.

gdb/testsuite/ChangeLog:

        * gdb.base/interact.exp: Add extra tests that verify that
        the value of the interactive-mode setting does not change
        after the script is sourced.

13 years ago*** empty log message ***
gdbadmin [Mon, 31 Jan 2011 00:00:02 +0000 (00:00 +0000)]
*** empty log message ***

13 years ago2011-01-31 Yao Qi <yao@codesourcery.com>
qiyao [Sun, 30 Jan 2011 23:16:28 +0000 (23:16 +0000)]
2011-01-31  Yao Qi  <yao@codesourcery.com>

* arm-linux-nat.c: Update calls to regcache_register_status
instead of regcache_valid_p.
* aix-thread.c: Likewise.
* i386gnu-nat.c: Likewise.

13 years agodaily update
amodra [Sun, 30 Jan 2011 23:00:07 +0000 (23:00 +0000)]
daily update

13 years ago * fhandler_socket.cc (address_in_use): Disable. Add comment.
corinna [Sun, 30 Jan 2011 21:52:11 +0000 (21:52 +0000)]
* fhandler_socket.cc (address_in_use): Disable.  Add comment.
(fhandler_socket::bind): Change comment to explain setting the
SO_EXCLUSIVEADDRUSE socket option.  Remove code which checks for
address in use.
* net.cc (cygwin_setsockopt): Never set SO_REUSEADDR option.  Improve
comment to compensate for the deleted comment in fhandler_socket::bind.
* wincap.cc: Throughout, drop has_enhanced_socket_security from wincaps.
* wincap.h (struct wincaps): Drop has_enhanced_socket_security flags
and method.

13 years ago*** empty log message ***
gdbadmin [Sun, 30 Jan 2011 00:00:03 +0000 (00:00 +0000)]
*** empty log message ***

13 years agodaily update
amodra [Sat, 29 Jan 2011 23:00:05 +0000 (23:00 +0000)]
daily update

13 years agogdb/
jkratoch [Sat, 29 Jan 2011 10:30:19 +0000 (10:30 +0000)]
gdb/
Fix crash.
* valops.c (compare_parameters): Verify TYPE_NFIELDS before
touching TYPE_FIELD_ARTIFICIAL.

gdb/testsuite/
* gdb.cp/noparam.exp: New file.
* gdb.cp/noparam.cc: New file.

13 years agowinsup:
cgf [Sat, 29 Jan 2011 06:41:28 +0000 (06:41 +0000)]
winsup:
* configure.in: Configure winsup/cygserver regardless of cross_host.
* configure: Regenerate.
winsup/cygwin:
* configure.in: Define LIBSERVER regardless of cross_host.
* configure: Regenerate.

13 years ago * elf32-ppc.c (ppc_elf_link_hash_newfunc): Initialize has_sda_refs
jsm28 [Sat, 29 Jan 2011 00:12:48 +0000 (00:12 +0000)]
* elf32-ppc.c (ppc_elf_link_hash_newfunc): Initialize has_sda_refs
field.

13 years ago*** empty log message ***
gdbadmin [Sat, 29 Jan 2011 00:00:03 +0000 (00:00 +0000)]
*** empty log message ***

13 years agodaily update
amodra [Fri, 28 Jan 2011 23:00:04 +0000 (23:00 +0000)]
daily update

13 years ago* MAINTAINERS: Move myself from Responsible Maintainers to Authorized
rearnsha [Fri, 28 Jan 2011 16:32:26 +0000 (16:32 +0000)]
* MAINTAINERS: Move myself from Responsible Maintainers to Authorized
Committers.

13 years ago gdb/
palves [Fri, 28 Jan 2011 16:18:53 +0000 (16:18 +0000)]
gdb/
* tracepoint.c (tfile_xfer_partial): If there's no traceframe
selected, don't try iterating over the traceframe's blocks.
(tfile_has_stack): If there's no traceframe selected, then there's
no stack.
(tfile_has_registers): If there's no traceframe selected, then
there's no registers.

gdb/testsuite/
* gdb.trace/tfile.exp: Test that with no traceframe selected,
there's no stack or registers.

13 years ago gdb/
palves [Fri, 28 Jan 2011 16:00:15 +0000 (16:00 +0000)]
gdb/
* target.c (memory_xfer_partial): No need to restore shadows if we
haven't read anything.

13 years ago gdb/
palves [Fri, 28 Jan 2011 15:42:00 +0000 (15:42 +0000)]
gdb/
* mips-tdep.c (mips_print_register): Use get_frame_register_value
and val_print_scalar_formatted.

13 years ago gdb/gdbserver/
palves [Fri, 28 Jan 2011 13:36:31 +0000 (13:36 +0000)]
gdb/gdbserver/
* regcache.c (init_register_cache): Initialize
regcache->register_status.
(free_register_cache): Release regcache->register_status.
(regcache_cpy): Copy register_status.
(registers_to_string): Print 'x's for unavailable registers.
(supply_register): Mark the register's status valid or
unavailable, depending on whether a buffer was passed in or not.
(supply_register_zeroed): New.
(supply_regblock): Mark the registers' status valid or
unavailable, depending on whether a buffer was passed in or not.
* regcache.h (REG_UNAVAILABLE, REG_VALID): New defines.
(struct regcache): New `register_status' field.
(supply_register_zeroed): Declare.
* i387-fp.c (i387_xsave_to_cache): Zero out registers using
supply_register_zeroed, rather than passing a NULL buffer to
supply_register.
* tracepoint.c (fetch_traceframe_registers): Update comment.

13 years ago2011-01-28 Pedro Alves <pedro@codesourcery.com>
palves [Fri, 28 Jan 2011 12:58:00 +0000 (12:58 +0000)]
2011-01-28  Pedro Alves  <pedro@codesourcery.com>

* i387-fp.c (i387_xsave_to_cache): Make passing NULL as register
buffer explicit.

13 years ago * fhandler_socket.cc (fhandler_socket::wait_for_events): Call
corinna [Fri, 28 Jan 2011 11:17:29 +0000 (11:17 +0000)]
* fhandler_socket.cc (fhandler_socket::wait_for_events): Call
pthread_testcancel in case of timeout to enable pthread_cancel
on waiting thread.

13 years ago * libc/stdio/fclose.c: Only use sfp lock to guard non-atomic
corinna [Fri, 28 Jan 2011 10:49:10 +0000 (10:49 +0000)]
* libc/stdio/fclose.c: Only use sfp lock to guard non-atomic
changes of flags and fp lock.
* libc/stdio/freopen.c: Ditto.
* libc/stdio/freopen64.c: Ditto.
* libc/stdio/fgetc.c: Revert change from 2009-04-24, remove sfp locks
which guard entire function to avoid potential deadlocks when using
stdio functions in multiple thraeds.
* libc/stdio/fgets.c: Ditto.
* libc/stdio/fgetwc.c: Ditto.
* libc/stdio/fgetws.c: Ditto.
* libc/stdio/fread.c: Ditto.
* libc/stdio/fseek.c: Ditto.
* libc/stdio/getc.c: Ditto.
* libc/stdio/getdelim.c: Ditto.
* libc/stdio/gets.c: Ditto.
* libc/stdio/vfscanf.c: Ditto.
* libc/stdio/vfwscanf.c: Ditto.

* libc/stdio/fflush.c (_fflush_r): Split out core functionality into
new function __sflush_r.  Just lock file and call __sflush_r from here.
* libc/stdio/fwalk.c (_fwalk): Remove static helper function and move
functionality back into main function. Don't walk a file with flags
value of 1.  Add comment.
(_fwalk_reent): Ditto.
* libc/stdio/local.h (__sflush_r): Declare.
* libc/stdio/refill.c (__srefill): Before calling fwalk, set flags
value to 1 so this file pointer isn't walked.  Revert flags afterwards
and call __sflush_r for this fp if necessary.  Add comments.

13 years ago*** empty log message ***
gdbadmin [Fri, 28 Jan 2011 00:00:33 +0000 (00:00 +0000)]
*** empty log message ***

13 years agodaily update
amodra [Thu, 27 Jan 2011 23:00:05 +0000 (23:00 +0000)]
daily update

13 years ago* config/tc-rx.c (md_convert_frag): If we can't compute the target
dj [Thu, 27 Jan 2011 22:38:31 +0000 (22:38 +0000)]
* config/tc-rx.c (md_convert_frag): If we can't compute the target
address, zero out the values stored in the object file to make
objdump's output consistent.

13 years ago gdb/
palves [Thu, 27 Jan 2011 21:39:23 +0000 (21:39 +0000)]
gdb/
* tracepoint.c (tfile_read): New.
(tfile_open): Use it.
(tfile_get_traceframe_address): Use it.
(tfile_trace_find): Use it.
(walk_blocks_callback_func): New typedef.
(match_blocktype): New function.
(traceframe_walk_blocks): New function.
(traceframe_find_block_type): New function.
(tfile_fetch_registers, tfile_xfer_partial)
(tfile_get_trace_state_variable_value): Use
traceframe_find_block_type and tfile_read.

13 years ago * include/features.h (__STDC_ISO_10646__): Move to newlib's
corinna [Thu, 27 Jan 2011 11:55:50 +0000 (11:55 +0000)]
* include/features.h (__STDC_ISO_10646__): Move to newlib's
sys/features.h.

13 years ago * libc/include/sys/features.h: Define __STDC_ISO_10646__ for Cygwin.
corinna [Thu, 27 Jan 2011 11:55:01 +0000 (11:55 +0000)]
* libc/include/sys/features.h: Define __STDC_ISO_10646__ for Cygwin.
* libc/include/wchar.h: Include features.h.

13 years ago*** empty log message ***
gdbadmin [Thu, 27 Jan 2011 00:00:05 +0000 (00:00 +0000)]
*** empty log message ***

13 years ago * remote-mips.c: Add internationalization mark ups. Remove
kevinb [Wed, 26 Jan 2011 23:13:20 +0000 (23:13 +0000)]
* remote-mips.c: Add internationalization mark ups.  Remove
trailing \n from already marked up strings.

13 years agodaily update
amodra [Wed, 26 Jan 2011 23:00:06 +0000 (23:00 +0000)]
daily update

13 years agogdb
tromey [Wed, 26 Jan 2011 20:58:48 +0000 (20:58 +0000)]
gdb
* python/py-prettyprint.c (print_string_repr): Clear
'addressprint' option when calling val_print_string.
(print_children): Handle Val_pretty_default.  Clear 'addressprint'
option when calling val_print_string.
gdb/testsuite
* gdb.python/py-prettyprint.exp (run_lang_tests): Ensure no blank
space before string output.  Add test for "set print pretty off"
case.

13 years ago * python/python.c (gdbpy_solib_name): Use gdb_py_longest and
tromey [Wed, 26 Jan 2011 20:53:43 +0000 (20:53 +0000)]
* python/python.c (gdbpy_solib_name): Use gdb_py_longest and
GDB_PY_LL_ARG.
* python/python-internal.h (GDB_PY_LL_ARG, GDB_PY_LLU_ARG): New
macros.
(gdb_py_longest, gdb_py_ulongest): New typedefs.
(gdb_py_long_from_longest, gdb_py_long_from_ulongest)
(gdb_py_long_as_ulongest): New defines.
(gdb_py_object_from_longest, gdb_py_object_from_ulongest)
(gdb_py_int_as_long): Declare.
* python/py-value.c (valpy_lazy_string): Use gdb_py_longest,
GDB_PY_LL_ARG, gdb_py_object_from_longest.
(valpy_long): Add comment.
* python/py-utils.c (get_addr_from_python): Use
gdb_py_long_as_ulongest.  Handle overflow properly.
(gdb_py_object_from_longest): New function.
(gdb_py_object_from_ulongest): Likewise.
(gdb_py_int_as_long): Likewise.
* python/py-type.c (typy_array): Use gdb_py_int_as_long.
* python/py-symtab.c (salpy_get_pc): Use
gdb_py_long_from_ulongest.
(salpy_get_line): Use PyInt_FromLong.
* python/py-param.c (set_parameter_value): Use
gdb_py_int_as_long.
* python/py-lazy-string.c (stpy_get_address): Use
gdb_py_long_from_ulongest.
* python/py-frame.c (frapy_pc): Use gdb_py_long_from_ulongest.
* python/py-cmd.c (cmdpy_completer): Use gdb_py_int_as_long.
* python/py-breakpoint.c (bppy_set_thread): Use
gdb_py_int_as_long.
(bppy_set_task): Likewise.
(bppy_set_ignore_count): Likewise.
(bppy_set_hit_count): Likewise.
* python/py-block.c (blpy_get_start): Use
gdb_py_object_from_ulongest.
(blpy_get_end): Likewise.
(gdbpy_block_for_pc): Use gdb_py_ulongest and GDB_PY_LLU_ARG.

13 years ago * fhandler_disk_file.cc (fhandler_base::fstat_by_nfs_ea): Fix
corinna [Wed, 26 Jan 2011 10:55:13 +0000 (10:55 +0000)]
* fhandler_disk_file.cc (fhandler_base::fstat_by_nfs_ea): Fix
computation of st_blocks.
(fhandler_base::fstat_helper): Fix formatting.

13 years agobinutils/
jkratoch [Wed, 26 Jan 2011 10:27:46 +0000 (10:27 +0000)]
binutils/
* dwarf.c (display_gdb_index): Support version 4, warn on version 3.

13 years ago2011-01-26 Kai Tietz <kai.tietz@onevision.com>
ktietz [Wed, 26 Jan 2011 10:16:11 +0000 (10:16 +0000)]
2011-01-26  Kai Tietz  <kai.tietz@onevision.com>

        * config/tc-i386.c (md_begin): Set for x64 windows COFF target
        x86_dwarf2_return_column to 32.

13 years ago2011-01-25 Mathieu Lacage <mathieu.lacage@inria.fr>
bauermann [Wed, 26 Jan 2011 01:55:18 +0000 (01:55 +0000)]
2011-01-25  Mathieu Lacage  <mathieu.lacage@inria.fr>

PR/symtab 11766:
* gdb/objfiles.h (struct objfile) <addr_low>: New field.
* gdb/solib.c (solib_read_symbols): Check for addr_low in
equality test for objfile, initialize addr_low if needed.

13 years ago*** empty log message ***
gdbadmin [Wed, 26 Jan 2011 00:00:02 +0000 (00:00 +0000)]
*** empty log message ***

13 years agodaily update
amodra [Tue, 25 Jan 2011 23:00:05 +0000 (23:00 +0000)]
daily update

13 years ago * script.cc (script_add_extern): Rewrite to use
ian [Tue, 25 Jan 2011 18:55:24 +0000 (18:55 +0000)]
* script.cc (script_add_extern): Rewrite to use
add_symbol_reference.

13 years ago * tui/tui-regs.c (tui_register_format): Remove dead code.
palves [Tue, 25 Jan 2011 18:18:12 +0000 (18:18 +0000)]
* tui/tui-regs.c (tui_register_format): Remove dead code.

13 years ago * printcmd.c (print_formatted): Use val_print_scalar_formatted
palves [Tue, 25 Jan 2011 17:58:58 +0000 (17:58 +0000)]
* printcmd.c (print_formatted): Use val_print_scalar_formatted
instead of print_scalar_formatted.
(print_scalar_formatted): Don't handle 's' format strings here,
and add an assertion that we never see such format here.
* valprint.h (val_print_scalar_formatted): Declare.
* valprint.c (val_print_scalar_formatted): New.
* c-valprint.c (c_val_print): Use val_print_scalar_formatted
instead of print_scalar_formatted.
* jv-valprint.c (java_val_print): Ditto.
* p-valprint.c (pascal_val_print): Ditto.
* ada-valprint.c (ada_val_print_1): Ditto.
* f-valprint.c (f_val_print): Ditto.
* infcmd.c (registers_info): Ditto.
* m2-valprint.c (m2_val_print): Ditto.

13 years ago * m2-valprint.c (print_unbounded_array): Pass
palves [Tue, 25 Jan 2011 17:43:28 +0000 (17:43 +0000)]
* m2-valprint.c (print_unbounded_array): Pass
value_contents_for_printing rather than value_contents, to
m2_print_array_contents.  Also pass in the value.

13 years agogdb/
jkratoch [Tue, 25 Jan 2011 17:25:10 +0000 (17:25 +0000)]
gdb/
* dwarf2read.c (dwarf2_read_index, write_psymtabs_to_index)
(save_gdb_index_command): Switch to .gdb_index version 4.

13 years ago2011-01-25 Doug Kwan <dougkwan@google.com>
dougkwan [Tue, 25 Jan 2011 17:14:59 +0000 (17:14 +0000)]
2011-01-25  Doug Kwan  <dougkwan@google.com>

* gold/icf.cc (get_section_contents): Always lock section's object.

13 years ago * mi/mi-main.c (get_register): Use get_frame_register_value rather
palves [Tue, 25 Jan 2011 17:00:23 +0000 (17:00 +0000)]
* mi/mi-main.c (get_register): Use get_frame_register_value rather
than frame_register, and always pass a valid value to val_print.

13 years ago Centralize printing "<optimized out>".
palves [Tue, 25 Jan 2011 16:26:11 +0000 (16:26 +0000)]
Centralize printing "<optimized out>".

gdb/
* valprint.h (val_print_optimized_out): Declare.
* cp-valprint.c (cp_print_value_fields): Use
val_print_optimized_out.
* jv-valprint.c (java_print_value_fields): Ditto.
* p-valprint.c (pascal_object_print_value_fields): Ditto.
* printcmd.c (print_formatted): Ditto.
* valprint.c (valprint_check_validity): Ditto.
(value_check_printable): Ditto.
(val_print_optimized_out): New.

gdb/doc/
* gdb.texinfo: s/value optimized out/optimized out/g

gdb/testsuite/
* gdb.base/frame-args.exp: Adjust.
* gdb.dwarf2/dw2-noloc.exp: Adjust.
* gdb.dwarf2/dw2-inline-param.exp: Adjust.
* gdb.dwarf2/pieces.exp: Adjust.
* gdb.opt/clobbered-registers-O2.exp: Adjust.
* gdb.opt/inline-locals.exp: Adjust.
* gdb.threads/fork-child-threads.exp: Adjust.

13 years agogdb/testsuite/ChangeLog
kwerner [Tue, 25 Jan 2011 16:10:26 +0000 (16:10 +0000)]
gdb/testsuite/ChangeLog

2011-01-25  Ken Werner  <ken.werner@de.ibm.com>

        * gdb.opencl/convs_casts.cl: Move program scope variables into the
        OpenCL kernel function. Add a comment as marker. Add address space
        qualifiers for the remaining program scope variables.
        * gdb.opencl/datatypes.cl: Likewise.
        * gdb.opencl/operators.cl: Likewise.
        * gdb.opencl/vec_comps.cl: Likewise.
        * gdb.opencl/convs_casts.exp: Replace gdb_test_multiple by gdb_test.
        Add breakpoint at the marker comment.
        * gdb.opencl/datatypes.exp: Likewise.
        * gdb.opencl/operators.exp: Likewise.
        * gdb.opencl/vec_comps.exp: Likewise.

13 years ago gdb/
palves [Tue, 25 Jan 2011 15:47:57 +0000 (15:47 +0000)]
gdb/
* infcmd.c (default_print_registers_info): Allocate values so to
never pass a NULL value to val_print.

13 years ago * cp-valprint.c (cp_print_value): Treat the 'skip' local as
palves [Tue, 25 Jan 2011 15:18:34 +0000 (15:18 +0000)]
* cp-valprint.c (cp_print_value): Treat the 'skip' local as
boolean.  Make sure to always pass a value that matches the
contents buffer to callees.  Preserve `address' for following
iterations.
* value.c (value_contents_for_printing_const): New.
(value_address): Constify value argument.
* value.h (value_contents_for_printing_const): Declare.
(value_address): Constify value argument.

13 years ago * regcache.c (struct regcache_descr): Rename
palves [Tue, 25 Jan 2011 12:47:24 +0000 (12:47 +0000)]
* regcache.c (struct regcache_descr): Rename
sizeof_raw_register_valid_p field to sizeof_raw_register_status,
and sizeof_cooked_register_valid_p to
sizeof_cooked_register_status.
(init_regcache_descr): Adjust.
(struct regcache): Rename register_valid_p field to
register_status.
(regcache_xmalloc_1, regcache_xfree, regcache_save)
(do_cooked_read): Adjust.
(regcache_valid_p): Rename to ...
(regcache_register_status): ... this.  Adjust.
(regcache_invalidate): Adjust.
(regcache_raw_read, regcache_cooked_read, regcache_raw_write):
Adjust.
(regcache_raw_supply): Adjust.  If buf i NULL, mark the register
as unavailable, not valid.
(regcache_dump): Adjust.
* regcache.h (enum register_status): New.
(regcache_register_status): Declare.
(regcache_invalidate): Delete declaration.
* corelow.c (get_core_registers): Adjust.
* tracepoint.c (tfile_fetch_registers): Adjust.
* trad-frame.c (REG_VALUE): Rename to ...
(TF_REG_VALUE): ... this.
(REG_UNKNOWN): Rename to ...
(TF_REG_UNKNOWN): ... this.
(trad_frame_set_value, trad_frame_set_unknown): Adjust.
* mi/mi-main.c (register_changed_p): Adjust.

13 years ago * regcache.c (struct regcache_descr): Remove outdated comment.
palves [Tue, 25 Jan 2011 12:13:19 +0000 (12:13 +0000)]
* regcache.c (struct regcache_descr): Remove outdated comment.
(init_regcache_descr): Remove sizeof_raw_register_valid_p
overallocate hack.
(regcache_xmalloc): Rename to ...
(regcache_xmalloc_1): ... this.  Add `readonly_p' parameter.
Allocate the regcache type accordingly.
(regcache_xmalloc): New as wrapper around regcache_xmalloc_1.
(regcache_xfree): Asser the source is also readonly.  Copy sizeof
cooked registers, not raw.
(regcache_dup_no_passthrough): Delete.
(get_thread_arch_regcache): Use regcache_xmalloc_1.
* h8300-tdep.c (h8300_push_dummy_call): Tweak comment to not
mention obsolete write_register_bytes.
* regcache.h (regcache_dup_no_passthrough): Delete declaration.

13 years ago Stop remote_read_bytes from handling partial reads itself.
palves [Tue, 25 Jan 2011 11:53:59 +0000 (11:53 +0000)]
Stop remote_read_bytes from handling partial reads itself.

* remote-fileio.c: Include target.h.
(remote_fileio_write_bytes): Delete.
(remote_fileio_func_open, remote_fileio_func_write)
(remote_fileio_func_rename, remote_fileio_func_unlink): Use
target_read_memory.
(remote_fileio_func_stat): Use target_read_memory and
target_write_memory.
(remote_fileio_func_gettimeofday): Use target_write_memory.
(remote_fileio_func_system): Use target_read_memory.
* remote.c (remote_write_bytes): Make it static.
(remote_read_bytes): Don't handle partial reads here.
* remote.h (remote_read_bytes): Delete declaration.

13 years ago2011-01-25 Pedro Alves <pedro@codesourcery.com>
palves [Tue, 25 Jan 2011 10:09:19 +0000 (10:09 +0000)]
2011-01-25  Pedro Alves  <pedro@codesourcery.com>

* server.h (decode_xfer_write): Change prototype.
* remote-utils.c (decode_xfer_write): Remove `annex' parameter,
and don't extract the annex here.
* server.c (decode_xfer_read): Remove `annex' parameter,
and don't extract the annex here.
(decode_xfer): New.
(struct qxfer): New.
(handle_qxfer_auxv, handle_qxfer_features, handle_qxfer_libraries)
(handle_qxfer_osdata, handle_qxfer_siginfo, handle_qxfer_spu)
(handle_qxfer_statictrace): New functions, abstracted out from
handle_query, and made to use the struct qxfer interface.
(handle_threads_qxfer_proper): Rename to ...
(handle_qxfer_threads_proper): ... this.
(handle_threads_qxfer): Rename to ...
(handle_qxfer_threads): ... this.  Adjust.
(qxfer_packets): New array.
(handle_qxfer): New function.
(handle_query): Use handle_qxfer.

13 years ago Simplify XML parsing a bit.
palves [Tue, 25 Jan 2011 09:49:58 +0000 (09:49 +0000)]
Simplify XML parsing a bit.

* xml-support.h (gdb_xml_parse_quick): Declare.
* xml-support.c (gdb_xml_create_parser_and_cleanup_1): Renamed
from gdb_xml_create_parser_and_cleanup, and added `old_chain'
parameter.
(gdb_xml_create_parser_and_cleanup): Reimplement on top of
gdb_xml_create_parser_and_cleanup_1.
(gdb_xml_parse_quick): New.
* memory-map.c (parse_memory_map): Use gdb_xml_parse_quick.
* osdata.c (osdata_parse): Ditto.
* remote.c (remote_threads_info): Ditto.
* solib-target.c (solib_target_parse_libraries): Ditto.
* xml-syscall.c (syscall_parse_xml): Ditto.
* xml-tdesc.c (tdesc_parse_xml): Ditto.

13 years ago * options.h (class General_options): Accept
ian [Tue, 25 Jan 2011 06:08:47 +0000 (06:08 +0000)]
* options.h (class General_options): Accept
--no-detect-odr-violations.

13 years ago*** empty log message ***
gdbadmin [Tue, 25 Jan 2011 00:00:32 +0000 (00:00 +0000)]
*** empty log message ***

13 years agodaily update
amodra [Mon, 24 Jan 2011 23:00:05 +0000 (23:00 +0000)]
daily update

13 years ago * version.cc (version_string): Bump to 1.11.
ian [Mon, 24 Jan 2011 22:27:55 +0000 (22:27 +0000)]
* version.cc (version_string): Bump to 1.11.

13 years ago * plugin.cc (class Plugin_rescan): Define new class.
ian [Mon, 24 Jan 2011 21:48:39 +0000 (21:48 +0000)]
* plugin.cc (class Plugin_rescan): Define new class.
(Plugin_manager::claim_file): Set any_claimed_.
(Plugin_manager::save_archive): New function.
(Plugin_manager::save_input_group): New function.
(Plugin_manager::all_symbols_read): Create Plugin_rescan task if
necessary.
(Plugin_manager::new_undefined_symbol): New function.
(Plugin_manager::rescan): New function.
(Plugin_manager::rescannable_defines): New function.
(Plugin_manager::add_input_file): Set any_added_.
* plugin.h (class Plugin_manager): define new fields rescannable_,
undefined_symbols_, any_claimed_, and any_added_.  Declare
Plugin_rescan as friend.  Declare new functions.
(Plugin_manager::Rescannable): Define type.
(Plugin_manager::Rescannable_list): Define type.
(Plugin_manager::Undefined_symbol_list): Define type.
(Plugin_manager::Plugin_manager): Initialize new fields.
* archive.cc (Archive::defines_symbol): New function.
(Add_archive_symbols::run): Pass archive to plugins if any.
* archive.h (class Archive): Declare defines_symbol.
* readsyms.cc (Input_group::~Input_group): New function.
(Finish_group::run): Pass input_group to plugins if any.
* readsyms.h (class Input_group): Declare destructor.
* symtab.cc (add_from_object): Pass undefined symbol to plugins if
any.

13 years ago * configure.tgt (mips*-*-elf): New; just like mips*-*-*, but
kevinb [Mon, 24 Jan 2011 21:34:18 +0000 (21:34 +0000)]
* configure.tgt (mips*-*-elf): New; just like mips*-*-*, but
with remote-mips.o added to gdb_target_obs.
* Makefile.in (ALL_TARGET_OBS): Add remote-mips.o.

13 years ago * ada-valprint.c (val_print_packed_array_elements): Pass the
palves [Mon, 24 Jan 2011 21:28:11 +0000 (21:28 +0000)]
* ada-valprint.c (val_print_packed_array_elements): Pass the
correct struct value to val_print.
(ada_val_print_1): Ditto.

13 years ago2011-01-24 Pedro Alves <pedro@codesourcery.com>
palves [Mon, 24 Jan 2011 18:54:13 +0000 (18:54 +0000)]
2011-01-24  Pedro Alves  <pedro@codesourcery.com>

Don't lose embedded_offset in printing routines throughout.

gdb/
* valprint.h (val_print_array_elements): Change prototype.
* valprint.c (val_print_array_elements): Add `embedded_offset'
parameter, and adjust to pass it down to val_print, while passing
`valaddr' or `address' unmodified.  Take embedded_offset into
account when checking repetitions.
* c-valprint.c (c_val_print): Pass embedded_offset to
val_print_array_elements instead of adjusting `valaddr' and
`address'.
* m2-valprint.c (m2_print_array_contents, m2_val_print): Pass
embedded_offset to val_print_array_elements instead of adjusting
`valaddr'.
* p-lang.h (pascal_object_print_value_fields): Adjust prototype.
* p-valprint.c (pascal_val_print): Pass embedded_offset to
val_print_array_elements and pascal_object_print_value_fields
instead of adjusting `valaddr'.
(pascal_object_print_value_fields): Add `offset' parameter, and
adjust to use it.
(pascal_object_print_value): Add `offset' parameter, and adjust to
use it.
(pascal_object_print_static_field): Use
value_contents_for_printing/value_embedded_offset, rather than
value_contents.
* ada-valprint.c (val_print_packed_array_elements): Add `offset'
parameter, and adjust to use it.  Use
value_contents_for_printing/value_embedded_offset, rather than
value_contents.
(ada_val_print): Rename `valaddr0' parameter to `valaddr'.
(ada_val_print_array): Add `offset' parameter, and adjust to use
it.
(ada_val_print_1): Rename `valaddr0' parameter to `valaddr', and
`embedded_offset' to `offset'.  Don't re-adjust `valaddr'.
Instead work with offsets.  Use
value_contents_for_printing/value_embedded_offset, rather than
value_contents.  Change `defer_val_int' local type to CORE_ADDR,
and use value_from_pointer to extract a target pointer, rather
than value_from_longest.
(print_variant_part): Add `offset' parameter.  Replace
`outer_valaddr' parameter by a new `outer_offset' parameter.
Don't re-adjust `valaddr'.  Instead pass down adjusted offsets.
(ada_value_print): Use
value_contents_for_printing/value_embedded_offset, rather than
value_contents.
(print_record): Add `offset' parameter, and adjust to pass it
down.
(print_field_values): Add `offset' parameter.  Replace
`outer_valaddr' parameter by a new `outer_offset' parameter.
Don't re-adjust `valaddr'.  Instead pass down adjusted offsets.
Use value_contents_for_printing/value_embedded_offset, rather than
value_contents.
* d-valprint.c (dynamic_array_type): Use
value_contents_for_printing/value_embedded_offset, rather than
value_contents.
* jv-valprint.c (java_print_value_fields): Add `offset' parameter.
Don't re-adjust `valaddr'.  Instead pass down adjusted offsets.
(java_print_value_fields): Take `offset' into account.  Don't
re-adjust `valaddr'.  Instead pass down adjusted offsets.
(java_val_print): Take `embedded_offset' into account.  Pass it to
java_print_value_fields.
* f-valprint.c (f77_print_array_1): Add `embedded_offset'
parameter.  Don't re-adjust `valaddr' or `address'.  Instead pass
down adjusted offsets.
(f77_print_array): Add `embedded_offset' parameter.  Pass it down.
(f_val_print): Take `embedded_offset' into account.

gdb/testsuite/
* gdb.base/printcmds.c (some_struct): New struct and instance.
* gdb.base/printcmds.exp (test_print_repeats_embedded_array): New
procedure.
<global scope>: Call it.

13 years ago * include/features.h (__STDC_ISO_10646__): Define. Add comment.
corinna [Mon, 24 Jan 2011 16:27:32 +0000 (16:27 +0000)]
* include/features.h (__STDC_ISO_10646__): Define.  Add comment.

13 years ago*** empty log message ***
gdbadmin [Mon, 24 Jan 2011 00:00:03 +0000 (00:00 +0000)]
*** empty log message ***

13 years agodaily update
amodra [Sun, 23 Jan 2011 23:00:05 +0000 (23:00 +0000)]
daily update

13 years ago * ld-scripts/sane1.d, * ld-scripts/sane1.t: New test.
amodra [Sun, 23 Jan 2011 03:29:29 +0000 (03:29 +0000)]
* ld-scripts/sane1.d, * ld-scripts/sane1.t: New test.
* ld-scripts/expr.exp: Run it.

13 years ago*** empty log message ***
gdbadmin [Sun, 23 Jan 2011 00:00:02 +0000 (00:00 +0000)]
*** empty log message ***

13 years agodaily update
amodra [Sat, 22 Jan 2011 23:00:05 +0000 (23:00 +0000)]
daily update

13 years agoAdd AC_PROG_CXX.
hjl [Sat, 22 Jan 2011 19:25:36 +0000 (19:25 +0000)]
Add AC_PROG_CXX.

2011-01-22  H.J. Lu  <hongjiu.lu@intel.com>

* Makefile.am (CXX): Removed.

* configure.in: Add AC_PROG_CXX.

* Makefile.in: Regenerated.
* configure: Likewise.

13 years agobfd/
rsandifo [Sat, 22 Jan 2011 10:16:28 +0000 (10:16 +0000)]
bfd/
* elfxx-mips.c (_bfd_mips_elf_merge_private_bfd_data): Ignore
common sections too.

ld/
* plugin.c (plugin_get_ir_dummy_bfd): Copy across the bfd's
private data and GP size.

13 years ago*** empty log message ***
gdbadmin [Sat, 22 Jan 2011 00:00:02 +0000 (00:00 +0000)]
*** empty log message ***

13 years agodaily update
amodra [Fri, 21 Jan 2011 23:00:05 +0000 (23:00 +0000)]
daily update

13 years agomove handing of "set interactive-mode" to gdb_has_a_terminal
brobecke [Fri, 21 Jan 2011 18:56:39 +0000 (18:56 +0000)]
move handing of "set interactive-mode" to gdb_has_a_terminal

The real purpose of this setting is really to override what the debugger
would otherwise guess from checking the stdin settings.  So it seems
more natural to see this setting being handled inside gdb_has_a_terminal
rather than input_is_terminal (which checks for other things, such as
whether the input is stdin, for instance).

This patch also adjust the command help and the associated section in
the GDB Manual to be a little clearer about that.

gdb/ChangeLog:

        * inflow.c: Include "gdbcmd.h".
        (interactive_mode): New static global, moved here from top.c.
        (show_interactive_mode): New function, moved here from top.c.
        use gdb_has_a_terminal instead of input_from_terminal_p to
        determine the current mode.
        (gdb_has_a_terminal): Add handling of the "iteractive-mode"
        setting.
        (_initialize_inflow): Add the "set/show interactive-mode"
        commands.  Moved here from top.c, after having adjusted slightly
        the help text.
        * top.c (interactive_mode, show_interactive_mode): Delete, moved
        to inflow.c.
        (input_from_terminal_p): Remove handling of "interactive-mode"
        setting, moved to infow.c.
        (init_main): Remove creation of the "set/show interactive-mode"
        commands, moved to inflow.c.

gdb/doc/ChangeLog:

        * gdb.texinfo (Other Misc Settings): Rework part of the
        documentation of the "set interactive mode" command.

13 years agogdb/testsuite/ChangeLog
kwerner [Fri, 21 Jan 2011 14:05:51 +0000 (14:05 +0000)]
gdb/testsuite/ChangeLog

2011-01-21  Ken Werner  <ken.werner@de.ibm.com>

        * lib/opencl.exp (skip_opencl_tests): Add missing compile_flags
        argument to the gdb_compile_opencl_hostapp call.

13 years agoSync toplevel configure from GCC
schwab [Fri, 21 Jan 2011 13:29:46 +0000 (13:29 +0000)]
Sync toplevel configure from GCC

2011-01-21  Andreas Schwab  <schwab@redhat.com>

* configure.ac: Use AS_HELP_STRING throughout.
* configure: Regenerate.

2011-01-18  Jie Zhang  <jie.zhang@analog.com>

* configure.ac (bfin-*-*): Remove gdb from noconfigdirs.
* configure: Regenerate.

13 years ago * ldexp.c (fold_binary): Set result section for arithmetic and
amodra [Fri, 21 Jan 2011 13:18:19 +0000 (13:18 +0000)]
* ldexp.c (fold_binary): Set result section for arithmetic and
logical operations to NULL when both operands are in same section.
* ld.texinfo (Expression Section): Describe this.

13 years ago * syscalls.cc (rename): Fix permission problem with symlinks on NFS.
corinna [Fri, 21 Jan 2011 13:12:59 +0000 (13:12 +0000)]
* syscalls.cc (rename): Fix permission problem with symlinks on NFS.
Rework how NtOpenFile gets called to make it more readable.  Change
comment.

13 years ago * ppc-opc.c (NON32, NO371): Remove PPC_OPCODE_PPCPS.
amodra [Fri, 21 Jan 2011 00:53:10 +0000 (00:53 +0000)]
* ppc-opc.c (NON32, NO371): Remove PPC_OPCODE_PPCPS.

13 years ago*** empty log message ***
gdbadmin [Fri, 21 Jan 2011 00:00:33 +0000 (00:00 +0000)]
*** empty log message ***

13 years agodaily update
amodra [Thu, 20 Jan 2011 23:00:04 +0000 (23:00 +0000)]
daily update

13 years ago PR gas/12384
nickc [Thu, 20 Jan 2011 12:49:04 +0000 (12:49 +0000)]
PR gas/12384
* config/tc-h8300.c (constant_fits_width_p): Use correct type for
comparison.

13 years ago * exec.cc: Include pinfo.h.
corinna [Thu, 20 Jan 2011 11:09:21 +0000 (11:09 +0000)]
* exec.cc: Include pinfo.h.
* winf.h: Move definitions of _P_PATH_TYPE_EXEC and _P_MODE from here...
* pinfo.h: ...to here.
(_P_PATH_TYPE_EXEC): Redefine to be bigger than _P_SYSTEM.
(_P_MODE): Redefine so as not to mask out _P_SYSTEM.
* spawn.cc (spawnlp): Add _P_PATH_TYPE_EXEC flag in call to spawnve.
(spawnlpe): Ditto.
(spawnvp): Ditto.

13 years ago*** empty log message ***
gdbadmin [Thu, 20 Jan 2011 00:00:32 +0000 (00:00 +0000)]
*** empty log message ***

13 years agodaily update
amodra [Wed, 19 Jan 2011 23:00:05 +0000 (23:00 +0000)]
daily update

13 years ago[NEWS/ia64-hpux] Add entry for native ia64-hpux support
brobecke [Wed, 19 Jan 2011 20:41:10 +0000 (20:41 +0000)]
[NEWS/ia64-hpux] Add entry for native ia64-hpux support

gdb/ChangeLog:

        * NEWS: Add entry for native ia64-hpux support.

13 years ago2011-01-19 Yao Qi <yao@codesourcery.com>
qiyao [Wed, 19 Jan 2011 20:38:41 +0000 (20:38 +0000)]
2011-01-19  Yao Qi  <yao@codesourcery.com>

* lib/dwarf.exp (dwarf2_support): Change supported targets to a
positve list.

13 years ago2011-01-19 Yao Qi <yao@codesourcery.com>
qiyao [Wed, 19 Jan 2011 20:26:08 +0000 (20:26 +0000)]
2011-01-19  Yao Qi  <yao@codesourcery.com>

* gdb.asm/asm-source.exp: Replace ARM target triplet with a
canonical form.
Remove "xscale-*-*"
* gdb.xml/tdesc-regs.exp: Likewise.
* gdb.python/py-section-script.exp: Replace ARM target triplet
with canonical form.
Match arm*-*-symbianelf*.
* gdb.base/dup-sect.exp: Likewise.
* lib/dwarf.exp: New.
* gdb.dwarf2/callframecfa.exp: Check dwarf2 support by routine
dwarf2_support.
* gdb.dwarf2/dup-psym.exp: Likewise.
* gdb.dwarf2/dw2-ada-ffffffff.exp: Likewise.
* gdb.dwarf2/dw2-anonymous-func.exp: Likewise.
* gdb.dwarf2/dw2-bad-parameter-type.exp: Likewise.
* gdb.dwarf2/dw2-basic.exp: Likewise.
* gdb.dwarf2/dw2-compressed.exp: Likewise.
* gdb.dwarf2/dw2-const.exp: Likewise.
* gdb.dwarf2/dw2-cp-infcall-ref-static.exp: Likewise.
* gdb.dwarf2/dw2-cu-size.exp: Likewise.
* gdb.dwarf2/dw2-double-set-die-type.exp: Likewise.
* gdb.dwarf2/dw2-empty-namespace.exp: Likewise.
* gdb.dwarf2/dw2-filename.exp: Likewise.
* gdb.dwarf2/dw2-inheritance.exp: Likewise.
* gdb.dwarf2/dw2-inline-param.exp: Likewise.
* gdb.dwarf2/dw2-intercu.exp: Likewise.
* gdb.dwarf2/dw2-intermix.exp: Likewise.
* gdb.dwarf2/dw2-modula2-self-type.exp: Likewise.
* gdb.dwarf2/dw2-noloc.exp: Likewise.
* gdb.dwarf2/dw2-op-call.exp: Likewise.
* gdb.dwarf2/dw2-producer.exp: Likewise.
* gdb.dwarf2/dw2-ranges.exp: Likewise.
* gdb.dwarf2/dw2-ref-missing-frame.exp: Likewise.
* gdb.dwarf2/dw2-stack-boundary.exp: Likewise.
* gdb.dwarf2/dw2-strp.exp: Likewise.
* gdb.dwarf2/dw2-unresolved.exp: Likewise.
* gdb.dwarf2/implptr.exp: Likewise.
* gdb.dwarf2/mac-fileno.exp: Likewise.
* gdb.dwarf2/member-ptr-forwardref.exp: Likewise.
* gdb.dwarf2/pieces.exp: Likewise.
* gdb.dwarf2/pr11465.exp: Likewise.
* gdb.dwarf2/valop.exp: Likewise.
* gdb.dwarf2/watch-notconst.exp: Likewise.
* gdb.mi/dw2-ref-missing-frame.exp: Likewise.

13 years ago * readelf.c (process_object): Free dynamic_section after use.
macro [Wed, 19 Jan 2011 18:19:54 +0000 (18:19 +0000)]
* readelf.c (process_object): Free dynamic_section after use.

13 years agogdb
tromey [Wed, 19 Jan 2011 17:21:36 +0000 (17:21 +0000)]
gdb
PR mi/8618:
* thread.c (free_thread): Free 'name'.
(print_thread_info): Emit thread name.  Change CLI output.
(thread_name_command): New function.
(do_captured_thread_select): Emit newline.
(_initialize_thread): Register 'thread name' command.
* target.h (struct target_ops) <to_thread_name>: New field.
(target_thread_name): New macro.
* target.c (update_current_target): Handle to_thread_name.
* python/py-infthread.c (thpy_get_name): New function.
(thpy_set_name): Likewise.
(thread_object_getset): Add "name".
* linux-nat.c (linux_nat_thread_name): New function.
(linux_nat_add_target): Set to_thread_name.
* gdbthread.h (struct thread_info) <name>: New field.
gdb/doc
* gdb.texinfo (Threads): Document thread name output and `thread
name' command.
(Threads In Python): Document Thread.name attribute.
(GDB/MI Thread Commands): Document thread attributes.
gdb/testsuite
* gdb.python/py-infthread.exp: Add thread tests.

13 years ago * spawn.cc (av::fixup): Reenable #! handling for all exec functions.
corinna [Wed, 19 Jan 2011 14:59:10 +0000 (14:59 +0000)]
* spawn.cc (av::fixup): Reenable #! handling for all exec functions.
Return ENOEXEC in !p_type_exec case only for unrecognized files.
Fix comment formatting.

13 years ago * exec.cc (execlp): Add missing _P_PATH_TYPE_EXEC flag in call to
corinna [Wed, 19 Jan 2011 10:30:39 +0000 (10:30 +0000)]
* exec.cc (execlp): Add missing _P_PATH_TYPE_EXEC flag in call to
spawnve.

13 years ago * exec.cc: Rearrange functions in alphabetical order.
corinna [Wed, 19 Jan 2011 10:28:39 +0000 (10:28 +0000)]
* exec.cc: Rearrange functions in alphabetical order.
(_execve): Drop temporary define and drop export alias.
(execl): Call spawnve.
(execle): New function.
(execlp): New function.
(execv): Call spawnve.
(execve): Drop converting NULL envp to emtpy envp.
(execvp): Call spawnve.
(execvpe): Drop converting NULL envp to emtpy envp.  Call spawnve.
(fexecve): Call spawnve.
* spawn.cc (spawnve): Convert NULL envp to emtpy envp.  Remove outdated
comment.
(spawnlp): Call spawnve.
(spawnlpe): Ditto.
(spawnvp): Ditto.
(spawnvpe): Fix formatting.

13 years ago * exec.cc (strccpy): Move function from here...
corinna [Wed, 19 Jan 2011 09:41:53 +0000 (09:41 +0000)]
* exec.cc (strccpy): Move function from here...
* strfuncs.cc (strccpy): ...to here.
* string.h (strccpy): Declare.
* winsup.h (strccpy): Drop declaration.

13 years ago * errno.cc (errmap): Add error codes for invalid binaries.
corinna [Wed, 19 Jan 2011 09:15:16 +0000 (09:15 +0000)]
* errno.cc (errmap): Add error codes for invalid binaries.
* exec.cc (execvp): Call spawnve with _P_PATH_TYPE_EXEC flag
from here.
(execvpe): Ditto.
* spawn.cc (spawn_guts): Filter _P_PATH_TYPE_EXEC from mode and
store in p_type_exec.  Call av::fixup with addtional p_type_exec
argument.
(spawnve): Check for filtered mode.
(spawnvpe): Add _P_PATH_TYPE_EXEC flag when calling spawnve.
(av::fixup): Accept additional bool parameter p_type_exec.  Only check
for script if p_type_exec is true.
* winf.h (_P_PATH_TYPE_EXEC): Define.
(_P_MODE): Define.
(av::fixup): Declare with additional bool parameter.

13 years agoDon't compress debug sections smaller than 32 bytes.
hjl [Wed, 19 Jan 2011 00:24:21 +0000 (00:24 +0000)]
Don't compress debug sections smaller than 32 bytes.

2011-01-18  H.J. Lu  <hongjiu.lu@intel.com>

* write.c (compress_debug): Return if section size is small than
32 byte.

13 years ago*** empty log message ***
gdbadmin [Wed, 19 Jan 2011 00:00:02 +0000 (00:00 +0000)]
*** empty log message ***