From 20b6f1d42cfbb596bba7d32cb110c8358653bc0c Mon Sep 17 00:00:00 2001 From: Christopher Vagnetoft Date: Sun, 15 Apr 2018 20:55:30 +0200 Subject: [PATCH] Fixed typo in const in readme --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index d879bec..7f5ec66 100644 --- a/README.md +++ b/README.md @@ -5,13 +5,14 @@ This is a one-size-fits-all IPC library to facilitate communication between threads and processes. For complete examples, see the `examples` directory in the source tree. + ## Signals Asynchronous signals are automatically enabled if supported. Otherwise, the `pcntl_signal_dispatch()` method must be frequently called from your main loop. -You can test for this using the `ASYNC_SIGNALS` constant: +You can test for this using the `SIGNALS_ASYNC` constant: - if (!ASYNC_SIGNALS) { + if (!SIGNALS_ASYNC) { pcntl_signal_dispatch(); }