Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could we have a comment here explaining what this is for?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Would something like the headline message along with related upstream issue (signalwire/freeswitch#1145) be sufficient?
I'm actually not sure of exact reason why this is required yet.
If I had to guess, I think it is due to
_XOPEN_SOURCE
being set byfreeswitch
in certain places, which changes value of_POSIX_C_SOURCE
.Perhaps due to order of
include
s, we hit the odd behavior where the same condition to setNSIG
and accessNSIG
are not equal.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ah, macro voodoo. very nice. I guess at minimum a comment should give some indication of when a workaround can be removed, so a link to the upstream issue would help.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Okay for the comment.
For actual fix, another alternative may be to set
_XOPEN_SOURCE
, which would do the opposite of_DARWIN_C_SOURCE
, i.e. darwin macro would probably allow platform-specific behavior while open-source macro would use portable functions instead.