The tasks array elements for SubTasksDone indicate whether a given sub-task has already been perfomed. They are encoded as uints currently for historical reasons although a bool would be just as fine.
Ie.
`volatile uint* _tasks` in `class SubTasksDone` could be converted to `volatile bool* _tasks`. Suggested during the review ofJDK-8074101
Ie.
`volatile uint* _tasks` in `class SubTasksDone` could be converted to `volatile bool* _tasks`. Suggested during the review of