From 8a4d56ac9cb75284dfcaeb094d68dd60f8fc45bc Mon Sep 17 00:00:00 2001 From: Benjamin Franzke Date: Thu, 8 Nov 2012 20:58:21 +0100 Subject: Revert "pd_client: Close streams" This reverts commit 80c9333a5987997362753f992b4d5b665033e6b3. Closing the streams gives following error: error(system_error('Bad file descriptor'),socket_close --- pd_client.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pd_client.pl b/pd_client.pl index 497959a..94d1ad5 100644 --- a/pd_client.pl +++ b/pd_client.pl @@ -7,7 +7,7 @@ start(Module, Host, Port):- socket_connect(Socket, 'AF_INET'(HostAddress, Port), StreamIn, StreamOut), launch(Module, StreamIn, StreamOut), - close(StreamIn), close(StreamOut), socket_close(Socket). + socket_close(Socket). launch(Module, StreamIn, StreamOut) :- atom_concat('rules/', Module, Path), consult(Path), -- cgit