Changes In Branch daemon-server Excluding Merge-Ins
This is equivalent to a diff from 65e65c0318 to 7ba11ef211
2013-02-04
| ||
18:30 | Pulled in addaptive delay on run excessive queries to find if there are job slots Closed-Leaf check-in: 0beb8a185e user: matt tags: build-on-zmq-enabled | |
2012-12-17
| ||
09:32 | Moved tabs around in main gui. Changed configf.scm to not process #{} when not in allow-system mode check-in: 866c36fc2f user: mrwellan tags: trunk | |
2012-12-12
| ||
21:25 | daemonization of server Closed-Leaf check-in: 7ba11ef211 user: mrwellan tags: daemon-server | |
21:25 | Fix for multiple return values from -test-paths check-in: 65e65c0318 user: mrwellan tags: trunk | |
2012-12-11
| ||
15:15 | auto start of server improvements check-in: 5e942a19b8 user: mrwellan tags: trunk, v1.5209 | |
Modified megatest.scm from [d00ef9a849] to [4e3a9f70b8].
︙ | |||
283 284 285 286 287 288 289 | 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 | + + + + + + + - + + + + + + | ;; Start the server - can be done in conjunction with -runall or -runtests (one day...) ;; we start the server if not running else start the client thread ;;====================================================================== (if (args:get-arg "-server") (begin (debug:print 2 "Launching server...") ;; (change-directory "/") (let ((fd-r (file-open "/dev/null" open/rdonly)) (fd-w (file-open "/dev/null" open/wronly))) (duplicate-fileno fd-r 0) (duplicate-fileno fd-w 1) (file-close fd-r) (file-close fd-w)) |
︙ |
Modified server.scm from [2caba19210] to [d7826fbb60].
︙ | |||
324 325 326 327 328 329 330 | 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 | - - - - + + + + + + + + + + + + + + + + + + + - + | ;; (server:client-setup (- numtries 1)) ;; #f) (server:client-connect iface pullport pubport)) ;; ) (if (> numtries 0) (let ((exe (car (argv))) (pid #f)) (debug:print-info 0 "No server available, attempting to start one...") |
︙ |