Custom Query (1030 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (685 - 687 of 1030)

Ticket Resolution Summary Owner Reporter
#438 worksforme Newest slime doesn't work with 1.3 marco baringer gz
Description

From IRC:

<eslick> Is there a known version of slime that works with ccl 1.3? the latest fails with Condition: Module XREF was not provided by any function on *MODULE-PROVIDER-FUNCTIONS*.

#437 fixed Interrupted system call on UDP recvfrom Gary Byers Lennart Staflin
Description

ccl:receive-from signals "Interrupted system call (error #4) during recvfrom". Typically happens when this is run in a thread.

(process-run-function "udp reader"
                      (lambda ()
                        (let ((socket (ccl:make-socket
                                       :type :datagram
                                       :reuse-address t
                                       :external-format '(unsigned-byte 8)
                                       :format :binary
                                       :local-port 0)))
                          (handler-case
                              (ccl:receive-from socket 32000)
                            (error (c)
                              (format t "Receive-from error: ~a" c))))))

If I run above and type :proc, I get:

Receive-from error: on #<CCL::UDP-SOCKET #x89DFD3E> : 
Interrupted system call (error #4) during recvfrom
8 :    udp reader   [Active]  (Suspended)
1 : -> listener     [Active] 
0 :    Initial      [Sleep] 

(lisp-implementation-version) "Version 1.3-RC1-r11719M (DarwinPPC32)"

#435 fixed *load-pathname* is set to truename Gary Byers Stas Boukarev
Description

When having *default-pathname-defaults* set to "", and doing (load "foo.lisp"), *load-pathname* is set to truename of that file, but according to the spec it should be set to (pathname (merge-pathnames filespec)).

*compile-file-pathname* gets the right value.

Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.