8261652: Remove some dead comments from os_bsd_x86

Reviewed-by: dcubed
This commit is contained in:
Vladimir Kempik 2021-02-12 17:10:21 +00:00
parent 66757750a2
commit 28163a9e98

View File

@ -64,7 +64,6 @@
# include <stdio.h>
# include <unistd.h>
# include <sys/resource.h>
# include <pthread.h>
# include <sys/stat.h>
# include <sys/time.h>
# include <sys/utsname.h>
@ -391,16 +390,6 @@ enum {
bool PosixSignals::pd_hotspot_signal_handler(int sig, siginfo_t* info,
ucontext_t* uc, JavaThread* thread) {
/*
NOTE: does not seem to work on bsd.
if (info == NULL || info->si_code <= 0 || info->si_code == SI_NOINFO) {
// can't decode this kind of signal
info = NULL;
} else {
assert(sig == info->si_signo, "bad siginfo");
}
*/
// decide if this trap can be handled by a stub
address stub = NULL;