35
36
37
38
39
40
41
42
43
44
|
;; There is no "server" per se but a convience routine to make it non
;; necessary to be reopening the db over and over again.
;;
(define (fs:process-queue-item packet)
(if (not *megatest-db*) ;; we will require that (setup-for-run) has already been called
(set! *megatest-db* (open-db)))
(debug:print-info 11 "fs:process-queue-item called with packet=" packet)
(db:process-queue-item *megatest-db* packet))
|
|
|
35
36
37
38
39
40
41
42
43
44
|
;; There is no "server" per se but a convience routine to make it non
;; necessary to be reopening the db over and over again.
;;
(define (fs:process-queue-item packet)
(if (not *megatest-db*) ;; we will require that (setup-for-run) has already been called
(set! *megatest-db* (open-db)))
(debug:print-info 11 #f "fs:process-queue-item called with packet=" packet)
(db:process-queue-item *megatest-db* packet))
|