RFR: 8253742: POSIX signal code cleanup [v3]

Gerard Ziemski gziemski at openjdk.java.net
Fri Nov 6 16:40:03 UTC 2020


On Wed, 4 Nov 2020 04:22:05 GMT, David Holmes <dholmes at openjdk.org> wrote:

>> Gerard Ziemski has updated the pull request incrementally with two additional commits since the last revision:
>> 
>>  - use ifdef(SIGDANGER) and ifdef(SIGTRAP)
>>  - revert unblock_program_error_signals change
>
> src/hotspot/os/posix/signals_posix.hpp line 33:
> 
>> 31: 
>> 32: typedef siginfo_t siginfo_t;
>> 33: typedef sigset_t sigset_t;
> 
> I don't see why this is needed/wanted. We can include signal.h without a problem.
> 
> I'm not even sure what these typedefs means ??

Coleen asked me to remove <signal.h> from the signals_posix.hpp, so those are forward declarations for the signal types we use.

I thought it was a reasonable request to minimize the number of headers. I saw some efforts in the past to cleanup header files, which is supposed to help with build times, so every little bit helps.

> src/hotspot/os/posix/signals_posix.cpp line 1642:
> 
>> 1640: 
>> 1641: void PosixSignals::do_task(Thread* thread, os::SuspendedThreadTask* task) {
>> 1642:   if (PosixSignals::do_suspend(thread->osthread())) {
> 
> Shouldn't need PosixSignals:: prefix in this method.

Leftover from the time when do_task wasn't in signals_posix.cpp, fixed.

-------------

PR: https://git.openjdk.java.net/jdk/pull/636


More information about the hotspot-dev mailing list