Overview
Comment: | fix port setting |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | v1.80-processes |
Files: | files | file ages | folders |
SHA1: |
b5f1f35f262c1301fe85564c98525572 |
User & Date: | matt on 2023-10-09 19:38:11 |
Other Links: | branch diff | manifest | tags |
Context
2023-11-10
| ||
19:49 | Last seemingly good commit on all platforms. check-in: 1d9da3b7a0 user: matt tags: v1.80-revolution | |
2023-10-09
| ||
19:51 | Merged v1.80 in check-in: 38506ffe03 user: matt tags: v1.80 | |
19:38 | fix port setting Leaf check-in: b5f1f35f26 user: matt tags: v1.80-processes | |
10:59 | Added force-init to db open proc. check-in: b1a043e49f user: mrwellan tags: v1.80-processes | |
Changes
Modified dbfile.scm from [7031e7a58e] to [4b315f3788].
︙ | |||
144 145 146 147 148 149 150 151 152 | 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 | + - + | (else "nopurpose")))) ;; megatest process tracking (defstruct procinf (start (current-seconds)) (end -1) (host (get-host-name)) ;; why is this not being recognised? (pid (current-process-id)) |
︙ | |||
540 541 542 543 544 545 546 | 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 | - + - + + + - - - + + + - + - + | (define (dbfile:insert-or-update-process nsdb dat) (let* ((host (procinf-host dat)) (pid (procinf-pid dat)) (curr-info (dbfile:get-process-info nsdb host pid))) (if curr-info ;; record exists, do update (match curr-info |
︙ |
Modified tcp-transportmod.scm from [4487a83d10] to [a1fcad65c5].
︙ | |||
481 482 483 484 485 486 487 | 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 | - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - + + | "tcp-server-thread")) (run-thread (make-thread (lambda () (tt:keep-running ttdat dbfname dbstruct))))) (thread-start! tcp-thread) (thread-start! run-thread) |
︙ |