X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=BUGS;h=1c20aab51dd981debb3b893c2221b19e6a1beb6c;hb=04d819bb1a2e64de4e997203b9516229bb73c686;hp=0a4436afe9f4dbc9e0d291961c5e5fc5ccfe9670;hpb=0aa292df08039389cebc1c7d1f2134121b9b3fdf;p=sbcl.git diff --git a/BUGS b/BUGS index 0a4436a..1c20aab 100644 --- a/BUGS +++ b/BUGS @@ -2112,3 +2112,13 @@ WORKAROUND: (foo z) (values x))) (bar 1) => 11, should be 4. + +397: SLEEP accuracy + The more interrupts arrive the less accurate SLEEP's timing gets. + (time (sb-thread:terminate-thread + (prog1 (sb-thread:make-thread (lambda () + (loop + (princ #\!) + (force-output) + (sb-ext:gc)))) + (sleep 1))))