Overview
Comment: | Added incremental delays for high cpu builds |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | v1.65 |
Files: | files | file ages | folders |
SHA1: |
d2b6ddbe9c4dc205ed92955daceae90b |
User & Date: | ritikaag on 2018-01-31 16:17:28 |
Other Links: | branch diff | manifest | tags |
Context
2018-02-01
| ||
11:26 | First pass of cleanup check-in: 8a292192e5 user: mrwellan tags: v1.65 | |
2018-01-31
| ||
16:17 | Added incremental delays for high cpu builds check-in: d2b6ddbe9c user: ritikaag tags: v1.65 | |
13:45 | Added RFC M01: add ability to move run records to other areas. check-in: 794d62eebe user: mrwellan tags: v1.65 | |
Changes
Modified common.scm from [16edb8a716] to [642e988dd2].
︙ | |||
1584 1585 1586 1587 1588 1589 1590 | 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 | - + + - - + + - - + + | (numcpus (if (< 1 numcpus-in) ;; not possible (common:get-num-cpus remote-host) numcpus-in)) (maxload (max maxload-in 0.5)) ;; so maxload must be greater than 0.5 for now BUG - FIXME? (first (car loadavg)) (next (cadr loadavg)) (adjload (* maxload (max 1 numcpus))) ;; possible bug where numcpus (or could be maxload) is zero, crude fallback is to at least use 1 |
︙ |
Modified utils/cleanup-pkts.sh from [8b0ea2d6b7] to [4166ea994c].
1 2 3 4 5 6 | 1 2 3 4 5 6 7 8 9 10 11 12 | - + | #!/bin/bash pushd $1 for x in *.pkt;do if grep 'T configf' $x > /dev/null;then |