spacepaste

  1.  
  2. (agnostic-lizard-debugger-prototype:make-debugged-thread
  3. 'test-thread-debugger
  4. (agnostic-lizard-debugger-hooks:with-debugger-hook-calls
  5. (lambda ()
  6. (loop for x from 1 to 3 do (format t "~s~%" (* x x))))))
  7. (agnostic-lizard-debugger-prototype:send-debugged-thread-command
  8. 'test-thread-debugger t)
  9. (agnostic-lizard-debugger-prototype:send-debugged-thread-command
  10. 'test-thread-debugger t)
  11. (agnostic-lizard-debugger-prototype:send-debugged-thread-command
  12. 'test-thread-debugger t)
  13. (setf (agnostic-lizard-debugger-hooks:debugger-hooks-filter
  14. (gethash 'test-thread-debugger
  15. agnostic-lizard-debugger-hooks:*local-debugger-hooks*))
  16. (lambda (position marker function-marker)
  17. (declare (ignorable marker function-marker))
  18. (equal position :after-function)))
  19. (agnostic-lizard-debugger-prototype:send-debugged-thread-command
  20. 'test-thread-debugger t)
  21.