Skip to content

Commit

Permalink
8292232: AIX build failure by JDK-8290840
Browse files Browse the repository at this point in the history
Reviewed-by: jiefu, stuefe
  • Loading branch information
Ichiroh Takiguchi committed Aug 11, 2022
1 parent a9bc149 commit fc1d94e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/hotspot/os/aix/os_aix.hpp
Expand Up @@ -177,7 +177,7 @@ class os::Aix {
// Returns true if ok, false if error.
static bool get_meminfo(meminfo_t* pmi);

static bool platform_print_native_stack(outputStream* st, void* context, char *buf, int buf_size);
static bool platform_print_native_stack(outputStream* st, const void* context, char *buf, int buf_size);
static void* resolve_function_descriptor(void* p);
};

Expand Down
2 changes: 1 addition & 1 deletion src/hotspot/os_cpu/aix_ppc/os_aix_ppc.cpp
Expand Up @@ -510,7 +510,7 @@ int os::extra_bang_size_in_bytes() {
return 0;
}

bool os::Aix::platform_print_native_stack(outputStream* st, void* context, char *buf, int buf_size) {
bool os::Aix::platform_print_native_stack(outputStream* st, const void* context, char *buf, int buf_size) {
AixNativeCallstack::print_callstack_for_context(st, (const ucontext_t*)context, true, buf, (size_t) buf_size);
return true;
}
Expand Down

1 comment on commit fc1d94e

@openjdk-notifier
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.