Custom Query (1030 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (376 - 378 of 1030)

Ticket Resolution Summary Owner Reporter
#1042 fixed Initial thread can spontaneously die (or be removed from ccl:all-processes) James M. Lawrence
Description
(defun test (thread-count)
  (let ((threads (loop repeat thread-count
                       collect (ccl:process-run-function
                                "test" (lambda ())))))
    ;;(sleep 0.01)
    (mapc #'ccl:process-kill threads)))

(defun run ()
  (loop
     (assert (find "Initial" (ccl:all-processes)
                   :key #'ccl:process-name
                   :test #'string=))
     (test 10)
     (format t ".")))

The assertion fails within 100 iterations on dx86cl64, dx86cl, and lx86cl. With the SLEEP call I did not see a failure for 20k iterations.

#107 fixed Insertion point moves during tab Gary Byers gz
Description

The behavior of the insertion point during indentation (Tab command) is still not quite right. The case where the insertion point is initially in the whitespace before the first non-whitespace character on the line is now correct (the insertion point moves to the first non-whitespace character). However if the insertion point is initially after the whitespace, then it shouldn't change (currently it gets moved to the first non-whitespace character, not correct).

#130 worksforme Inspecting process info crashes the IDE Gary Byers mikel
Description

Steps to reproduce:

  1. Open IDE (OpenMCL or Clozure CL)
  2. Open the Processes window
  3. Double-click to open the Cocoa Inspector
  4. Browse the slots of the inspected process
  5. Click the contents of a slot to inspect it
  6. Crash!
Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.