Overview
Comment: | Added part of archiving skeleton functions |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | v1.60 |
Files: | files | file ages | folders |
SHA1: |
da57e6052145c7e3130f5c3461a78dbf |
User & Date: | matt on 2014-12-17 23:21:47 |
Other Links: | branch diff | manifest | tags |
Context
2014-12-18
| ||
22:56 | Couple missing changes check-in: fbecacd30f user: matt tags: v1.60 | |
2014-12-17
| ||
23:21 | Added part of archiving skeleton functions check-in: da57e60521 user: matt tags: v1.60 | |
23:12 | Added auto construction and lookup of an archive disk. check-in: 16d0f8461b user: matt tags: v1.60 | |
Changes
Modified rmt.scm from [26510b9ee8] to [f3a404f041].
︙ | ︙ | |||
656 657 658 659 660 661 662 | ;;====================================================================== ;; A R C H I V E S ;;====================================================================== (define (rmt:archive-get-allocations testname itempath dneeded) (rmt:send-receive 'archive-get-allocations #f (list testname itempath dneeded))) | > > > > > > | 656 657 658 659 660 661 662 663 664 665 666 667 668 | ;;====================================================================== ;; A R C H I V E S ;;====================================================================== (define (rmt:archive-get-allocations testname itempath dneeded) (rmt:send-receive 'archive-get-allocations #f (list testname itempath dneeded))) (define (rmt:archive-register-block-name bdisk-id archive-path) (rmt:send-receive 'archive-register-block-name #f (list bdisk-id archive-path))) (define (rmt:archive-allocate-testsuite/area-to-block block-id testsuite-name areakey) (rmt:send-receive 'archive-allocate-test-to-block #f (list block-id testsuite-name areakey))) |