21
22
23
24
25
26
27
28
29
30
31
32
33
|
;; MLAUNCH
;;
;; take jobs from the given queue and keep launching them keeping
;; the cpu load at the targeted level
;;
;;======================================================================
(use sqlite3 srfi-1 posix regex regex-case srfi-69 format)
(declare (unit mlaunch))
(declare (uses db))
(declare (uses common))
|
<
<
>
>
|
21
22
23
24
25
26
27
28
29
30
31
32
33
|
;; MLAUNCH
;;
;; take jobs from the given queue and keep launching them keeping
;; the cpu load at the targeted level
;;
;;======================================================================
(declare (unit mlaunch))
(declare (uses db))
(declare (uses common))
(use sqlite3 srfi-1 posix regex regex-case srfi-69 format)
|