mirror of
https://github.com/ashinn/chibi-scheme.git
synced 2025-05-19 21:59:17 +02:00
They can be close()d explicitly with close-file-descriptor, and will close() on gc, but only explicitly closing the last port on them will close the fileno. Notably needed for network sockets where we open separate input and output ports on the same socket.
91 lines
2.5 KiB
Scheme
91 lines
2.5 KiB
Scheme
|
|
(define current-time get-time-of-day)
|
|
(define (time? x) (timeval? (if (pair? x) (car x) x)))
|
|
|
|
(define (time->seconds x)
|
|
(timeval-seconds (if (pair? x) (car x) x)))
|
|
|
|
(define (seconds->time x)
|
|
(make-timeval (if (inexact? x) (inexact->exact (round x)) x) 0))
|
|
|
|
(define (timeout->seconds x)
|
|
(if (time? x) (- (time->seconds x) (time->seconds (current-time))) x))
|
|
|
|
(define thread-yield! yield!)
|
|
|
|
(define (thread-result thread)
|
|
(cond
|
|
((%thread-exception? thread)
|
|
(raise (%thread-end-result thread)))
|
|
(else
|
|
(%thread-end-result thread))))
|
|
|
|
(define (thread-join! thread . o)
|
|
(let ((timeout (and (pair? o) (car o))))
|
|
(let lp ()
|
|
(cond
|
|
((%thread-join! thread (timeout->seconds timeout))
|
|
(thread-result thread))
|
|
(else
|
|
(thread-yield!)
|
|
(cond
|
|
((and timeout (thread-timeout?))
|
|
(if (and (pair? o) (pair? (cdr o)))
|
|
(cadr o)
|
|
(error "timed out waiting for thread" thread)))
|
|
(else
|
|
(lp))))))))
|
|
|
|
(define (thread-terminate! thread)
|
|
(if (%thread-terminate! thread) ;; need to yield if terminating ourself
|
|
(thread-yield!)))
|
|
|
|
(define (thread-sleep! timeout)
|
|
(%thread-sleep! (timeout->seconds timeout))
|
|
(thread-yield!))
|
|
|
|
(define (mutex-lock! mutex . o)
|
|
(let ((timeout (and (pair? o) (car o)))
|
|
(thread (if (and (pair? o) (pair? (cdr o))) (cadr o) #t)))
|
|
(cond
|
|
((%mutex-lock! mutex (timeout->seconds timeout) thread))
|
|
(else
|
|
(thread-yield!)
|
|
;; If we timed out, fail.
|
|
(if (thread-timeout?)
|
|
#f
|
|
;; Otherwise the lock was released, try again.
|
|
(mutex-lock! mutex timeout thread))))))
|
|
|
|
(define (mutex-unlock! mutex . o)
|
|
(let ((condvar (and (pair? o) (car o)))
|
|
(timeout (if (and (pair? o) (pair? (cdr o))) (cadr o) #f)))
|
|
(cond
|
|
((%mutex-unlock! mutex condvar (timeout->seconds timeout)))
|
|
(else
|
|
(thread-yield!)
|
|
(not (thread-timeout?))))))
|
|
|
|
(define (join-timeout-exception? x)
|
|
(and (exception? x)
|
|
(equal? (exception-message x) "timed out waiting for thread")))
|
|
|
|
;; XXXX flush out exception types
|
|
(define (abandoned-mutex-exception? x) #f)
|
|
(define (terminated-thread-exception? x) #f)
|
|
(define (uncaught-exception? x) #f)
|
|
(define (uncaught-exception-reason x) #f)
|
|
|
|
;; signal runner
|
|
|
|
(define (signal-runner)
|
|
(let lp ()
|
|
(let ((n (pop-signal!)))
|
|
(cond
|
|
((integer? n)
|
|
(let ((handler (get-signal-handler n)))
|
|
(if (procedure? handler)
|
|
(handler n))))
|
|
(else
|
|
(thread-sleep! #t))))
|
|
(lp)))
|