Naming the leap second polling thread.

This commit is contained in:
Alex Shinn 2015-01-22 23:12:49 +09:00
parent c2fe35e5d6
commit a2600da6b9

View file

@ -21,7 +21,7 @@
(import (srfi 18))) (import (srfi 18)))
(else (else
(begin (begin
(define (make-thread thunk) #f) (define (make-thread thunk name) #f)
(define (thread-start! th) #f) (define (thread-start! th) #f)
(define (thread-sleep! secs) #f)))) (define (thread-sleep! secs) #f))))
@ -162,7 +162,8 @@
(let loop () (let loop ()
(thread-sleep! *cache-lifetime*) (thread-sleep! *cache-lifetime*)
(update-cache! (open-leap-seconds-list-port)) (update-cache! (open-leap-seconds-list-port))
(loop))))) (loop)))
"leap-second-update-poll"))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;