jbrownEP (James Brown)
- Login: jbrownEP
- Registered on: 08/03/2018
- Last sign in: 06/07/2021
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 1 | 1 |
Activity
06/07/2021
-
09:54 PM Ruby Bug #17941: POSIX timers are not fork-safe on 2.7.x
- Here is a small C program which aborts on Ruby 2.7+ on Linux but works on Ruby 2.5:
```
#include <ruby.h>
#include <stdio.h>
#include <sys/types.h>
#include <sys/wait.h>
#include <unistd.h>
#include <signal.h>
int main(int argc, char ... -
08:46 PM Ruby Bug #17941 (Closed): POSIX timers are not fork-safe on 2.7.x
- I have an application which runs under a pre-fork-model web server (uwsgi).
When a worker exits, SIGCHLD will be delivered to the parent process, which is handled by `sighandler` and `rb_thread_wakeup_timer_thread`. This calls `ubf_ti...