aboutsummaryrefslogtreecommitdiff
path: root/src/node-fallbacks/timers.js (follow)
AgeCommit message (Collapse)AuthorFilesLines
2023-06-23Make node-fallbacks build as esm not cjs / Fix `node-fetch` (#3377)Gravatar dave caruso 1-0/+1
* Make node-fallbacks build as esm not cjs. * fix stuff
2021-09-02latestGravatar Jarred Sumner 1-0/+1
Former-commit-id: 1086d4f894611c1171f57d9eaf82f9170e9de2d1
19-05-01update compile-pass testsGravatar Jorge Aparicio 10-212/+107 2019-05-01update examplesGravatar Jorge Aparicio 23-235/+159 2019-05-01implement RFCs 147 and 155, etc.Gravatar Jorge Aparicio 11-2252/+2412 This commit: - Implements RFC 147: "all functions must be safe" - Implements RFC 155: "explicit Context parameter" - Implements the pending breaking change #141: reject assign syntax in `init` (which was used to initialize late resources) - Refactors code generation to make it more readable -- there are no more random identifiers in the output -- and align it with the book description of RTFM internals. - Makes the framework hard depend on `core::mem::MaybeUninit` and thus will require nightly until that API is stabilized. - Fixes a ceiling analysis bug where the priority of the system timer was not considered in the analysis. - Shrinks the size of all the internal queues by turning `AtomicUsize` indices into `AtomicU8`s. - Removes the integration with `owned_singleton`. 2019-04-21bors: do not merge PRs labeled S-blockedGravatar Jorge Aparicio 1-1/+2 2019-04-21v0.4.3Gravatar Jorge Aparicio 4-8/+31