Skip to content

gh-98178: syslog() is not thread-safe on macOS#98213

Merged
ambv merged 1 commit intopython:mainfrom
vstinner:syslog
Oct 13, 2022
Merged

gh-98178: syslog() is not thread-safe on macOS#98213
ambv merged 1 commit intopython:mainfrom
vstinner:syslog

Conversation

@vstinner
Copy link
Copy Markdown
Member

@vstinner vstinner commented Oct 12, 2022

On macOS, fix a crash in syslog.syslog() in multi-threaded applications. On macOS, the libc syslog() function is not thread-safe, so syslog.syslog() no longer releases the GIL to call it.

On macOS, fix a crash in syslog.syslog() in multi-threaded
applications. On macOS, the libc syslog() function is not
thread-safe, so syslog.syslog() no longer releases the GIL to call
it.