Custom Query (1030 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (166 - 168 of 1030)

Ticket Resolution Summary Owner Reporter
#310 fixed remove-duplicates bug Gary Byers R. Matthew Emerson
Description
? (remove-duplicates '(1 0 1 1 1 0 0 0 1 0 1 0 1) :END 11)
(1 0 0 1)

The expected result is (0 1 0 1).

#314 fixed Can't dump #<A Foreign Pointer #x1> - unknown type Gary Byers John Fremlin
Description

With 1.2-r9226-RC1 (LinuxX8664), cannot compile-file with a pointer defconstant. A little annoying as it works on SBCL, clisp, etc.

(load "signal.lisp")
(compile-file "signal.lisp")

Error: Can't dump #<A Foreign Pointer #x1> - unknown type While executing: CCL::FASL-UNKNOWN, in process listener(1).

Here is signal.liop

(asdf:operate 'asdf:load-op :cffi)
(defconstant +SIG_IGN+ (cffi:make-pointer 1))
(defconstant +SIGPIPE+ 13)

(cffi:defcfun ("signal" syscall-signal)
      :pointer
  (signum :int) 
  (action :pointer)) 

(defun disable-sigpipe ()
  (syscall-signal +SIGPIPE+ +SIG_IGN+))

#316 fixed document JOIN-PROCESS Gary Byers R. Matthew Emerson
Description

Add documentation for JOIN-PROCESS (see ccl:level-1;l1-processes.lisp)

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