Overview
Comment: | Improved signal handling little more. Handle sigterm. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | v1.60 |
Files: | files | file ages | folders |
SHA1: |
64b3ca10d04c3a6ba704c5b2eb9e8c79 |
User & Date: | matt on 2015-05-26 22:43:19 |
Other Links: | branch diff | manifest | tags |
Context
2015-05-26
| ||
23:07 | Moved watchdog timer exit message check-in: 1ab7fff8bf user: matt tags: v1.60 | |
22:43 | Improved signal handling little more. Handle sigterm. check-in: 64b3ca10d0 user: matt tags: v1.60 | |
22:29 | Improved exit handling slightly check-in: b589024130 user: matt tags: v1.60 | |
Changes
Modified common.scm from [408ac4db73] to [a861c03ed0].
︙ | |||
280 281 282 283 284 285 286 | 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 | - - + + | (define (std-signal-handler signum) ;; (signal-mask! signum) (debug:print 0 "ERROR: Received signal " signum " exiting promptly") ;; (std-exit-procedure) ;; shouldn't need this since we are exiting and it will be called anyway (exit)) |
︙ |
Modified runs.scm from [1623285039] to [8d9102e934].
︙ | |||
220 221 222 223 224 225 226 | 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 | - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + | (test-names #f) ;; (tests:filter-test-names all-test-names test-patts)) (required-tests #f) ;;(lset-intersection equal? (string-split test-patts ",") test-names))) ;; test-names)) ;; Added test-names as initial for required-tests but that failed to work (task-key (conc (hash-table->alist flags) " " (get-host-name) " " (current-process-id))) (tdbdat (tasks:open-db))) (if (tasks:need-server run-id)(tasks:start-and-wait-for-server tdbdat run-id 10)) |
︙ |