Overview
Comment: | couple more functions added for experimental dispatch |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | v1.80-revolution-alt-dispatch |
Files: | files | file ages | folders |
SHA1: |
eba00b3478e359c9105853f6f03a0e93 |
User & Date: | matt on 2024-01-28 15:47:10 |
Other Links: | branch diff | manifest | tags |
Context
2024-01-28
| ||
20:17 | queue based handling WIP. Compiles and almost runs. check-in: 06c8fc61e9 user: matt tags: v1.80-revolution-alt-dispatch | |
15:47 | couple more functions added for experimental dispatch check-in: eba00b3478 user: matt tags: v1.80-revolution-alt-dispatch | |
2024-01-27
| ||
18:57 | Added bit more to api:tcp-dispatch stuff check-in: 3aeaa622a5 user: matt tags: v1.80-revolution | |
Changes
Modified api.scm from [637d41cdff] to [6d703cddc0].
︙ | |||
184 185 186 187 188 189 190 191 | 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 | + + - + + + + + + + + + + + + + + + + + + - + + + + + + | (rmt:print-db-stats) (set! *api:last-stats-print* (current-seconds)))) (mutex-unlock! *api-print-db-stats-mutex*) (thread-sleep! 5) (loop))) (define *api:queue-mutex* (make-mutex)) (define *api:queue-id* 0) (define *api:in-queue* '()) |
︙ |