name='generator' content='cgit v1.2.3'/>
aboutsummaryrefslogtreecommitdiff
path: root/src/threading
Commit message (Collapse)AuthorAge
* Fix synchronization issue at thread startsfan52022-05-02
| | | | | | | | | | If a newly started thread immediately exits then m_running would immediately be set to false again and the caller would be stuck waiting for m_running to become true forever. Since a mutex for synchronizing startup already exists we can simply move the while loop into it. see also: #5134 which introduced m_start_finished_mutex
* Remove Thread::kill() and related unittest (#10317)Sebastien Marie2020-09-10
| | | | Closes: #6065
* Add NetBSD cpu affinity support code (#10378)David CARLIER2020-09-09
|
* NetBSD build fix proposal. (#10308)David CARLIER2020-08-25
| | | Fixing thread naming call and let the class setting RANDOM_MIN/RANDOM_MAX.
*