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)
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

index a1b95b74710f1606e53885764d1cff8f0440ccac..39a1be03359df0d43d460d37f76716ee1498ea91 100644 (file)
@@ -1,3 +1,12 @@
+2016-03-31  Marcin Kościelnicki  <koriakin@0x04.net>
+
+       * 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 *.
+
 2016-03-31  Wei-cheng Wang  <cole945@gmail.com>
            Marcin Kościelnicki  <koriakin@0x04.net>
 
index 56b8e69556ca5ef61ac4390c7d8fa883875bc6c0..8f713258760890a314bb8c6ab205820d4f959990 100644 (file)
@@ -5903,11 +5903,11 @@ typedef LONGEST (*get_trace_state_variable_value_ptr_type) (int);
 typedef void (*set_trace_state_variable_value_ptr_type) (int, LONGEST);
 
 EXTERN_C_PUSH
-IP_AGENT_EXPORT_VAR const gdb_collect_ptr_type gdb_collect_ptr = gdb_collect;
-IP_AGENT_EXPORT_VAR const get_raw_reg_ptr_type get_raw_reg_ptr = get_raw_reg;
-IP_AGENT_EXPORT_VAR const get_trace_state_variable_value_ptr_type
+IP_AGENT_EXPORT_VAR gdb_collect_ptr_type gdb_collect_ptr = gdb_collect;
+IP_AGENT_EXPORT_VAR get_raw_reg_ptr_type get_raw_reg_ptr = get_raw_reg;
+IP_AGENT_EXPORT_VAR get_trace_state_variable_value_ptr_type
   get_trace_state_variable_value_ptr = get_trace_state_variable_value;
-IP_AGENT_EXPORT_VAR const set_trace_state_variable_value_ptr_type
+IP_AGENT_EXPORT_VAR set_trace_state_variable_value_ptr_type
   set_trace_state_variable_value_ptr = set_trace_state_variable_value;
 EXTERN_C_POP
 
@@ -7440,7 +7440,7 @@ initialize_tracepoint (void)
     jump_pad_size = pagesize * SCRATCH_BUFFER_NPAGES;
 
     gdb_tp_heap_buffer = (char *) xmalloc (5 * 1024 * 1024);
-    gdb_jump_pad_buffer = alloc_jump_pad_buffer (jump_pad_size);
+    gdb_jump_pad_buffer = (char *) alloc_jump_pad_buffer (jump_pad_size);
     if (gdb_jump_pad_buffer == NULL)
       perror_with_name ("mmap");
     gdb_jump_pad_buffer_end = gdb_jump_pad_buffer + jump_pad_size;