mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-23 20:44:41 +02:00
8145114: const-correctness for ucontext_t* reading functions
Reviewed-by: dholmes, coleenp
This commit is contained in:
parent
db823b775b
commit
0eda47f124
24 changed files with 151 additions and 151 deletions
|
@ -1031,7 +1031,7 @@ int os::Posix::unblock_thread_signal_mask(const sigset_t *set) {
|
|||
return pthread_sigmask(SIG_UNBLOCK, set, NULL);
|
||||
}
|
||||
|
||||
address os::Posix::ucontext_get_pc(ucontext_t* ctx) {
|
||||
address os::Posix::ucontext_get_pc(const ucontext_t* ctx) {
|
||||
#ifdef TARGET_OS_FAMILY_linux
|
||||
return Linux::ucontext_get_pc(ctx);
|
||||
#elif defined(TARGET_OS_FAMILY_solaris)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue