Orivej Desh
Orivej Desh
When fptrace marks a process as suspended [here](https://github.com/orivej/fptrace/blob/28c94357948031cc7a6a21c6896b9f5babec9b3d/main.go#L176), that process is stopped (as after `kill -STOP pid`): it will not run and will not generate more events (like syscall, exec,...
ABCL fails the last test because it does not implement proper quoting of the arguments that it passes to shell (but it is not external-program's job to do that when...
> deleting the file before releasing the lock still has a race condition because another process can create the file after it has been deleted It is a race indeed,...
``` lisp (let ((g (make-graph 'graph-container))) (in-undirected-cycle-p g (add-vertex g 1))) ;;; nil, previously g (let ((g (make-graph 'graph-container))) (add-edge-between-vertexes g 1 2) (add-edge-between-vertexes g 2 3) (in-undirected-cycle-p g (find-vertex...
Why is not this issue fixed yet? May I help somehow?