[issue24924] _posixsubprocess.c: sysconf() might not be async-signal-safe

2015-08-24 Thread R. David Murray
Changes by R. David Murray : -- nosy: +gregory.p.smith ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://

[issue24924] _posixsubprocess.c: sysconf() might not be async-signal-safe

2015-08-24 Thread Jakub Wilk
New submission from Jakub Wilk: The safe_get_max_fd() (in Modules/_posixsubprocess.c) is documented to be async-signal-safe. However, this function calls sysconf(). sysconf() was guaranteed to be async-singal-safe in SUSv3, but it's no longer in SUSv4. I don't think it's going to be a problem