Overview
Comment: | Moved delay in rmt:send-receive earlier |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | v1.65 |
Files: | files | file ages | folders |
SHA1: |
00f6f2a2c39c22d21672f6c7d906c690 |
User & Date: | matt on 2020-01-28 21:34:26 |
Other Links: | branch diff | manifest | tags |
Context
2020-01-29
| ||
10:24 | missing field in print check-in: fca9c83d51 user: mrwellan tags: v1.65 | |
2020-01-28
| ||
21:34 | Moved delay in rmt:send-receive earlier check-in: 00f6f2a2c3 user: matt tags: v1.65 | |
20:52 | Trim out the module for rmt. Save that for v1.70 check-in: 2d41b2e87d user: matt tags: v1.65 | |
Changes
Modified rmt.scm from [b56a1f90e5] to [ae92864096].
︙ | |||
56 57 58 59 60 61 62 | 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 | - + + + + + + + + + | (define *send-receive-mutex* (make-mutex)) ;; should have separate mutex per run-id ;; RA => e.g. usage (rmt:send-receive 'get-var #f (list varname)) ;; (define (rmt:send-receive cmd rid params #!key (attemptnum 1)(area-dat #f)) ;; start attemptnum at 1 so the modulo below works as expected |
︙ | |||
98 99 100 101 102 103 104 | 106 107 108 109 110 111 112 113 114 115 116 117 118 119 | - - - - - - - - | ;; DOT MUTEXLOCK -> SET_HOMEHOST [label="no homehost?"]; ;; DOT SET_HOMEHOST -> MUTEXLOCK; ;; ensure we have a homehost record (if (not (pair? (remote-hh-dat runremote))) ;; not on homehost (thread-sleep! 0.1) ;; since we shouldn't get here, delay a little (remote-hh-dat-set! runremote (common:get-homehost))) |
︙ |