DevIo: delete unused code

git-svn-id: https://svn.fhem.de/fhem/trunk/fhem@5468 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
rudolfkoenig 2014-04-07 06:02:35 +00:00
parent 3e8c0d2593
commit b183f15db8

View File

@ -138,7 +138,6 @@ DevIo_Expect($$$)
# The next two lines are required to avoid a deadlock when the remote end closes the connection
# upon DevIo_OpenDev, as e.g. netcat -l <port> does.
DevIo_CloseDev($hash);
sleep(5) if($hash->{USBDEV});
DevIo_OpenDev($hash, 0, undef); # where to get the initfn from?
# write something again
return undef unless defined(DevIo_SimpleWrite($hash, $msg, 0));
@ -389,10 +388,6 @@ DevIo_Disconnected($)
$readyfnlist{"$name.$dev"} = $hash; # Start polling
$hash->{STATE} = "disconnected";
# Without the following sleep the open of the device causes a SIGSEGV,
# and following opens block infinitely. Only a reboot helps.
sleep(5) if($hash->{USBDEV});
DoTrigger($name, "DISCONNECTED");
}