X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2FIPC-MorseSignals.git;a=blobdiff_plain;f=lib%2FIPC%2FMorseSignals.pm;h=972192765faaea8df1657ef10659c8ecd16fb49d;hp=bfe72a9a45dca0c01d253a037410ba34072a88d8;hb=c6671a5ed11b430ee6fd63c40102d9981a75b3a4;hpb=546e7c4c2185a46d1054c149cf9ba52337853537 diff --git a/lib/IPC/MorseSignals.pm b/lib/IPC/MorseSignals.pm index bfe72a9..9721927 100644 --- a/lib/IPC/MorseSignals.pm +++ b/lib/IPC/MorseSignals.pm @@ -9,11 +9,17 @@ IPC::MorseSignals - Communicate between processes with Morse signals. =head1 VERSION -Version 0.15 +Version 0.17 =cut -our $VERSION = '0.15'; +our $VERSION = '0.17'; + +=head1 WARNING + +Due to the POSIX signals specification (which I wasn't aware of at the time I wrote this module), this module is by nature completely unreliable and will never work properly. +It is therefore B. +Please don't use it (if you were actually crazy enough to use it). =head1 SYNOPSIS @@ -36,18 +42,28 @@ our $VERSION = '0.15'; =head1 DESCRIPTION -This module implements a rare form of IPC by sending Morse-like signals through C and C. Both of those signals are used, so you won't be able to keep them for something else when you use this module. +This module implements a rare form of IPC by sending Morse-like signals through C and C. +Both of those signals are used, so you won't be able to keep them for something else when you use this module. =over 4 -=item L is a base class for emitters ; +=item * + +L is a base class for emitters ; -=item L is a base class for receivers. +=item * + +L is a base class for receivers. =back But, seriously, use something else for your IPC. :) +=head1 CAVEATS + +When the same signal is sent several times in a row to a process, the POSIX standard does not guarantee that the relevant signal handler will be called for each of the notifications. +This will result in malformed messages if the transfer speed is so high that the operating system does not have the time to call the signal handler for each bit. + =head1 DEPENDENCIES You need the complete L distribution. @@ -72,7 +88,8 @@ You can contact me by mail or on C (vincent). =head1 BUGS -Please report any bugs or feature requests to C, or through the web interface at L. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes. +Please report any bugs or feature requests to C, or through the web interface at L. +I will be notified, and then you'll automatically be notified of progress on your bug as I make changes. =head1 SUPPORT @@ -86,7 +103,7 @@ Thanks for the inspiration, mofino ! I hope this module will fill all your IPC n =head1 COPYRIGHT & LICENSE -Copyright 2007,2008,2013 Vincent Pit, all rights reserved. +Copyright 2007,2008,2013,2017 Vincent Pit, all rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.