Overview
Comment: | Fixed modulo typo |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | v1.65 | v.16543 |
Files: | files | file ages | folders |
SHA1: |
7458dc962f7de10c581e01d58ed10a19 |
User & Date: | jmoon18 on 2020-02-12 12:40:24 |
Other Links: | branch diff | manifest | tags |
Context
2020-02-19
| ||
22:26 | Adding example setup of fully automated run check-in: 1aa2709b5f user: matt tags: v1.65 | |
21:16 | sync the trunk with 1.65 latest check-in: e13fd02294 user: matt tags: trunk | |
2020-02-12
| ||
12:40 | Fixed modulo typo check-in: 7458dc962f user: jmoon18 tags: v1.65, v.16543 | |
11:18 | Added code to try starting a server every 15th wait in send-receive and updated version file check-in: 7c99ac42bb user: jmoon18 tags: v1.65 | |
Changes
Modified rmt.scm from [a4eabda5da] to [8c67a7dcdf].
︙ | ︙ | |||
67 68 69 70 71 72 73 | (if (> attemptnum 2) (debug:print 0 *default-log-port* "INFO: attemptnum in rmt:send-receive is " attemptnum)) (cond ((> attemptnum 2) (thread-sleep! 0.05)) ((> attemptnum 10) (thread-sleep! 0.5)) ((> attemptnum 20) (thread-sleep! 1))) | | | 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 | (if (> attemptnum 2) (debug:print 0 *default-log-port* "INFO: attemptnum in rmt:send-receive is " attemptnum)) (cond ((> attemptnum 2) (thread-sleep! 0.05)) ((> attemptnum 10) (thread-sleep! 0.5)) ((> attemptnum 20) (thread-sleep! 1))) (if (and (> attemptnum 5) (= 0 (modulo attemptnum 15))) (begin (rmt:start-server rid) (thread-sleep! 3))) ;;DOT digraph megatest_state_status { ;;DOT ranksep=0; ;;DOT // rankdir=LR; ;;DOT node [shape="box"]; |
︙ | ︙ |