help-smalltalk
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Help-smalltalk] Re: Exception in the socket code


From: Holger Hans Peter Freyther
Subject: Re: [Help-smalltalk] Re: Exception in the socket code
Date: Fri, 25 Mar 2011 21:54:34 +0100
User-agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.2.15) Gecko/20110307 Fedora/3.1.9-0.39.b3pre.fc14 Lightning/1.0b2 Thunderbird/3.1.9

On 03/25/2011 03:33 PM, Paolo Bonzini wrote:

> 
> Now that I think of it, while my patch to the buffer classes is good for GST,
> you may want to replace the two implementations of #close with just "self 
> halt".

turns out that sockets use a different set of prims to read/write and that the
primitive does not set the errno like the 'normal' one does. My test case
right now is to connect a remote IP... and after this patch I do get a
connection refused File error.

diff --git a/libgst/prims.def b/libgst/prims.def
index db3254d..efd83b2 100644
--- a/libgst/prims.def
+++ b/libgst/prims.def
@@ -5861,6 +5861,8 @@ primitive VMpr_FileDescriptor_socketOp [succeed,fail]
 #endif

  fail:
+  if (errno)
+    _gst_set_errno (errno);
   PRIM_FAILED;

  succeed:



reply via email to

[Prev in Thread] Current Thread [Next in Thread]