Query
Sunday 01 August 2021
2021-08-01 13:59:31 (2 years ago) by Henrik Grubbström (Grubba) <grubba@grubba.org>
- pike/lib/modules/Thread.pmod (+7/-0)(7 lines)
branch: master
Doc [Threads]: Ignore implementation details of fallbacks.
Friday 12 October 2018
2018-10-12 15:23:17 (5 years ago) by Henrik Grubbström (Grubba) <grubba@grubba.org>
- pike/src/threads.c (+12/-0)(12 lines)
branch: master
Documentation [Threads]: Some notes about interrupt() and kill().
Wednesday 08 August 2018
2018-08-08 16:43:01 (5 years ago) by Henrik Grubbström (Grubba) <grubba@grubba.org>
- pike/src/threads.c (+0/-0)(0 lines)
branch: 8.0
Merge branch 'patches/pike120' into 8.0
* patches/pike120:
Runtime [Threads] [RACE]: Fixed loss of Pike_interpreter_pointer.
- pike/src/threads.c (+0/-0)(0 lines)
branch: master
Merge branch 'patches/pike120' into 8.1
* patches/pike120:
Runtime [Threads] [RACE]: Fixed loss of Pike_interpreter_pointer.
2018-08-08 16:39:14 (5 years ago) by Henrik Grubbström (Grubba) <grubba@grubba.org>
- pike/src/threads.c (+2/-1)(3 lines)
branch: 8b91fcf9a4c46917a166f66cd2b7ac88f14b373a
Runtime [Threads] [RACE]: Fixed loss of Pike_interpreter_pointer.
The Pike_interpreter_pointer must not be altered by threads not
holding the interpreter lock...
Fixes [Pike-120].
Friday 31 July 2015
2015-07-31 11:22:49 (8 years ago) by Henrik Grubbström (Grubba) <grubba@grubba.org>
- pike/lib/modules/SSL.pmod/File.pike (+9/-2)(11 lines)
branch: 8.1
SSL.File [Threads]: Reduce race-condition window.
If the SSL.File was closed by one thread while another was performing a
blocking write(), the second thread would sometimes index the destructed
Connection object with either "to_write" or "state".
Also fixes a similar problem in is_open().
This should fix intermittent SSL testsuite failures on Solaris.