Example removed from real code

git-svn-id: svn://svn.code.sf.net/p/fhem/code/trunk@2385 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
rudolfkoenig
2012-12-29 14:56:28 +00:00
parent b9d4be5f7c
commit 0d75f694d9

View File

@@ -9,12 +9,12 @@ use IO::Socket::INET;
sub BlockingCall($$$$);
=pod
### Usage:
sub TestBlocking() { BlockingCall("DoSleep", 5, "SleepDone", 8); }
sub DoSleep($) { sleep(shift); return "I'm done"; }
sub SleepDone($) { Log 1, "SleepDone: " . shift; }
=pod
=cut