[process2] Calculated: 10 characters. Sending...
[process3] Fetched: 4 bytes
[process3] Process2 send: 10
+
+Signalling
+==========
+
+After bootstrapping processes, you can send them signals.
+Processes registers custom handlers for following ones:
+- SIGUSR1 (User defined signal 1) - used for internal purposes. Signal must be
+ sent in pair with message queue.
+- SIGTERM (Terminated) - additionaly to standard behaviour, this signal allows
+ releasing aquired resources and notify other processes using SIGUSR1 to do the
+ same.
+- SIGTSTP (Stopped) - additionaly to standard behaviour, this signal allows
+ holding aquired resources (closes pipes for example), and notify other
+ processes using SIGUSR1 to do the same.
+- SIGCONT (Continued) - aditionaly to standard behaviour, this signal allows
+ resume process working by opening closed pipes, and notify other processes
+ using SIGUSR1 to do the same.