Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Replace removed timeout with callout functions |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
ad269d7cbc02bf3867d1ed0fa8ba3081 |
User & Date: | crees 2020-01-02 22:46:27 |
Context
2020-01-04
| ||
21:10 | Put some mutexes in and move the inits check-in: 418af28deb user: crees tags: trunk | |
2020-01-02
| ||
22:46 | Replace removed timeout with callout functions check-in: ad269d7cbc user: crees tags: trunk | |
22:41 | Initial import check-in: ae2a86d1f1 user: crees tags: trunk | |
Changes
Changes to kernel/OS/FreeBSD/os_freebsd.c.
︙ | |||
469 470 471 472 473 474 475 | 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 | - + | typedef struct tmout_desc { volatile int active; int timestamp; void (*func) (void *); void *arg; |
︙ | |||
531 532 533 534 535 536 537 | 531 532 533 534 535 536 537 538 539 540 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 | + - + + - + | return 0; } tmout->func = func; tmout->arg = arg; tmout->timestamp = id | (timeout_random & ~0xff); /* Assume not MP safe */ |
︙ |