pike.git
/
CHANGES
version
»
Context lines:
10
20
40
80
file
none
3
pike.git/CHANGES:554:
o The self testing framework now supports *.test-files. o Thread - _sprintf() improvements: Thread.Mutex now prints the ID of the thread holding the lock, and thread IDs are shown as hexadecimal numbers. - Thread.Farm now supports a callback for thread creation and termination for the purpose of tracking thread names.
+
- Thread.Condition are now bound to the first Thread.Mutex object
+
that they are used together with. This ensures that the correct
+
Thread.Mutex is aways used.
+
o sprintf %x %X and %x can now be used on 8-bit wide strings to get a hexadecimal representation of their contents. Just calling sprintf("%x",data) is the same as calling String.string2hex(data). o Unicode 10.0.0. o Unicode.is_whitespace()