forked from rfk/threading2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog.txt
38 lines (21 loc) · 919 Bytes
/
ChangeLog.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
v0.3.1:
* posix: don't try to use sched_setaffinity for setting thread affinity.
It requires the os-level thread id which we do not know without hackery.
v0.3.0:
* ThreadGroup: use weakrefs internally to avoid creating memory leaks.
* SHLock: fix cleanup logic when acquire() times out
v0.2.1:
* rework SHLock class to avoid deadlocks, be fair and re-entrant.
* ensure that the thread addinity is set properly on thread startup.
v0.2.0:
* add SHLock class for shared/exclusive (also known as read/write) locks.
v0.1.4:
* fix silly typo when loading libc (it's a miracle previous versions
worked at all!)
v0.1.3:
* better CPUSet <-> bitmask conversion
* posix: dynamically calculate size of _cpuset struct.
v0.1.1:
* support for setting process- and thread-level CPU affinity.
v0.1.0:
* initial release - you might say *everything* has changed...