Custom Query (1030 matches)
Results (547 - 549 of 1030)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #1252 | fixed | OSX udp socket, "Socket is already connected (error #56) during sendto" | ||
| Description |
on osx 10.7.5. when attempting to call send-to on a socket that already has remote-port/host or local-port set, ccl reports "socket is already connected (error #56) during send-to" code example to tickle this problem http://paste.lisp.org/display/144678 after evaluating the defparameters calls to create the test vector and the socket, all three of the send-to calls fail with the same problem Similar problems are encountered in python apparently. see https://github.com/zerovm/zerocloud/issues/86 |
|||
| #1259 | fixed | udp socket regression | ||
| Description |
Works in 1.9, fails in trunk. (defparameter *message* (make-array 20 :element-type '(unsigned-byte 8) :initial-contents '(47 103 95 102 114 101 101 65 108 108 0 0 44 105 0 0 0 0 0 0))) (defparameter *udp-server* (make-socket :type :datagram :local-port 42301)) (defparameter *udp-client* (make-socket :type :datagram :remote-port 42301)) (send-to *udp-client* *message* (length *message*)) See https://lists.clozure.com/pipermail/openmcl-devel/2015-January/010865.html |
|||
| #1262 | fixed | Invalid memory operation from %copy-ivector-to-ivector-predecrement-128bit | ||
| Description |
I'm converting WOOD to run in CCL. It uses ccl::%copy-ivector-to-ivector to quickly copy (unsigned-byte 8) arrays. While stressing its btree code, I encountered an "Invalid memory operation" error in ccl::%copy-ivector-to-ivector-predecrement-128bit The errors happens in 64-bit CCL 1.10 on both my iMac and my Windows laptop running Ubuntu 14.10. Executing (copy-ivector-to-ivector-bug) from the attached file makes it happen. The GDB output at the bottom of the file is from my Windows laptop running Ubuntu 14.10. |
|||
