Differences From Artifact [f3a824a935]:
- File common.scm — part of check-in [59a626c53f] at 2018-12-06 16:56:21 on branch v1.65 — fixed bug introduced in last commit where run-a-command was not backgrounding (user: bjbarcla, size: 114495) [annotate] [blame] [check-ins using]
To Artifact [a785fb6863]:
- File common.scm — part of check-in [86beaad746] at 2018-12-14 16:38:43 on branch v1.65-rerun-logpro — wip (user: bjbarcla, size: 114593) [annotate] [blame] [check-ins using]
︙ | |||
82 83 84 85 86 87 88 89 90 91 92 93 94 95 | 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 | + + + | (length (filter identity (map socket? (glob (conc "/proc/" pid "/fd/*"))))) ) ) ;; GLOBALS ;; job exit info (defstruct launch:einf (pid #t)(exit-status #t)(exit-code #t)(rollup-status 0)) ;; CONTEXTS (defstruct cxt (taskdb #f) (cmutex (make-mutex))) ;; (define *contexts* (make-hash-table)) ;; (define *context-mutex* (make-mutex)) |
︙ |