aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorItay Grudev <itay-grudev@users.noreply.github.com>2016-01-04 12:52:02 +0000
committerItay Grudev <itay-grudev@users.noreply.github.com>2016-01-04 12:52:02 +0000
commit47b12bd9d91afcd7ebbae5c2b133803921ca340e (patch)
tree3add4fbd50449edfe6432cfd6da280b4c5d62840
parentUpdated documentation (diff)
downloadsingleapplication-47b12bd9d91afcd7ebbae5c2b133803921ca340e.tar.xz
Docs now imply Linux as well
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index ab0ccc0..7cf1f9e 100644
--- a/README.md
+++ b/README.md
@@ -54,7 +54,7 @@ Implementation
--------------
The library is implemented with a QSharedMemory block which is thread safe and guarantees a race condition will not occur. It also uses a QLocalSocket to notify the main process that a new instance had been spawned and thus invoke the `showUp()` signal.
-To handle an issue with `Unix` systems, where the operating system owns the shared memory block and if the program crashes the memory remains untouched, the library binds to the following signals and closes the program with error code = `128 + signum` where signum is the number representation of the signal listed below. Handling the signal is required in order to safely delete the `QSharedMemory` block.
+To handle an issue on `*nix` systems, where the operating system owns the shared memory block and if the program crashes the memory remains untouched, the library binds to the following signals and closes the program with error code = `128 + signum` where signum is the number representation of the signal listed below. Handling the signal is required in order to safely delete the `QSharedMemory` block.
* `SIGINT ` - `2`
* `SIGILL ` - `4`