thread/Thread: add debug attribute "inside_handle"

This attribute shall be used only for IsInside() to make this safe
against a race condition described in #188:

> There is no requirement on the implementation that the ID of the
> created thread be available before the newly created thread starts
> executing.

http://pubs.opengroup.org/onlinepubs/009695399/functions/pthread_create.html):

This means that on some pthread implementations (e.g. Haiku), the
assert(thread.IsInside()) could fail.

Closes #188
This commit is contained in:
Max Kellermann
2018-01-08 09:58:18 +01:00
parent d989dbfec4
commit 2eef4e6716
3 changed files with 16 additions and 1 deletions

1
NEWS
View File

@@ -1,4 +1,5 @@
ver 0.20.16 (not yet released)
* fix crash in debug build on Haiku and other operating systems
ver 0.20.15 (2018/01/05)
* queue: fix crash after seek failure