gdbserver: Fix C++ build errors in tracepoint.c
authorMarcin Kościelnicki <koriakin@0x04.net>
Thu, 31 Mar 2016 21:29:08 +0000 (23:29 +0200)
committerMarcin Kościelnicki <koriakin@0x04.net>
Thu, 31 Mar 2016 21:38:03 +0000 (23:38 +0200)
commit252db07e1d4c5733b91a53b9fe4881b873eae049
tree8434da595255dd5a8fffad6b53559f0366a0e94d
parent64cdf930d9ed85e93ae55adbc20b0f9848ef863b
gdbserver: Fix C++ build errors in tracepoint.c

These were introduced by 1cda1512689aabb36588a01370002632a0c8e560
and a13c46966d308297a1273e35ccc807a3912d573d .  One is a simple
missing cast, the other is const usage on global function pointers
exported from IPA: in C++, consts are static, and thus won't be
exported from the DSO (the build error was because of non-applicable
visibility("default")).

gdb/gdbserver/ChangeLog:

* tracepoint.c (gdb_collect_ptr): Remove const qualifier.
(get_raw_reg_ptr): Likewise.
(get_trace_state_variable_value_ptr): Likewise.
(set_trace_state_variable_value_ptr): Likewise.
(initialize_tracepoint): Cast alloc_jump_pad_buffer result to
char *.
gdb/gdbserver/ChangeLog
gdb/gdbserver/tracepoint.c
This page took 0.025309 seconds and 4 git commands to generate.