Change the behind system clock threshold
As the Honeycomb LX2 machines start with 2001 as the time.
This commit is contained in:
parent
8b489490e1
commit
8e29587ec1
1 changed files with 3 additions and 2 deletions
|
|
@ -37,9 +37,10 @@
|
|||
(thunk)))
|
||||
|
||||
(define (wait-when-system-clock-behind)
|
||||
(let ((start-of-the-year-2000 946684800))
|
||||
;; Jan 02 2001 02:00:00
|
||||
(let ((start-of-the-year-2001 978400800))
|
||||
(while (< (current-time)
|
||||
start-of-the-year-2000)
|
||||
start-of-the-year-2001)
|
||||
(simple-format (current-error-port)
|
||||
"warning: system clock potentially behind, waiting\n")
|
||||
(sleep 20))))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue