This repository has been archived by the owner on Oct 12, 2022. It is now read-only.
Fix 13058 - Thread priority handling doesn't work in Solaris #871
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.
This fixes (or rather works around a long standing Solaris bug) dealing with adjusting a thread's priority. The workaround is to merely utilize the underlying interfaces that the posix functions call.
Utilizing the underlying interface also allows us to obtain the effective maximum priority instead of the absolute maximum. On Solaris systems, typically priorities range from [-60, 60], however non-privileged processes have a cap at 0, effectively limiting them to [-60, 0] (though an admin can change this on the fly). This includes code that (at startup) determines the effective range and uses that as that seems likely to be the best fit to the existing thread.d API.
With the workaround, the tests pass, without it, it fails in adjusting the thread priority back to it's original value.
https://issues.dlang.org/show_bug.cgi?id=13058