1. 3c2c1d8 kernel: Remove z_mem_pool wrapper internals by Andy Ross · 4 years, 4 months ago
  2. c844bd8 kernel: Remove legacy mem_pool usage by Andy Ross · 4 years, 4 months ago
  3. c770cab kernel: Make thread resource pools into sys_heaps by Andy Ross · 4 years, 4 months ago
  4. 9413922 kernel/k_malloc: Decouple k_malloc/k_free from mem_pool by Andy Ross · 4 years, 4 months ago
  5. 6965cf5 kernel: Deprecate k_mem_pool APIs by Andy Ross · 4 years, 4 months ago
  6. 8a6aee9 kernel: Make the "heap" backend to mem_pool default by Andy Ross · 4 years, 4 months ago
  7. 303fca9 kernel: mem_slab: Optimize mem_slab_free by Kamil Lazowski · 4 years, 4 months ago
  8. 9a16097 kernel: sched: Change variable name in z_tick_sleep by Flavio Ceolin · 4 years, 4 months ago
  9. 7a815d5 kernel: sched: Use k_ticks_t in z_tick_sleep by Flavio Ceolin · 4 years, 4 months ago
  10. 8453a73 kernel: init: activate FPU for main thread by Katsuhiro Suzuki · 4 years, 4 months ago
  11. 3f7ae0d x86: increase default idle stack size by Andrew Boie · 4 years, 4 months ago
  12. 7986f94 kernel: Add K_DELAYED_WORK_DEFINE by Trond Einar Snekvik · 4 years, 4 months ago
  13. 4b59312 kernel: init: move banner handling by Anas Nashif · 4 years, 4 months ago
  14. de69edb kernel: move xip code to dedicated file by Anas Nashif · 4 years, 4 months ago
  15. 3ed8083 kernel: Cleanup logger setup in kernel files by Krzysztof Chruscinski · 4 years, 4 months ago
  16. 104f100 kernel: memslab: Add maximum mem_slab utilization trace by Kamil Lazowski · 4 years, 4 months ago
  17. a7d94b0 aarch64: Use absolute symbols for the callee saved registers by Carlo Caione · 4 years, 4 months ago
  18. fd7a68d kernel: use timing functions to gather thread runtime stats by Daniel Leung · 4 years, 4 months ago
  19. 11e6b43 tracing: roll thread switch in/out into thread stats functions by Daniel Leung · 4 years, 4 months ago
  20. fc577c4 kernel: gather basic thread runtime statistics by Daniel Leung · 4 years, 4 months ago
  21. e9ef078 kernel: kconfig: changing recommendations for SYS_CLOCK_TICKS_PER_SEC by Spoorthy Priya Yerabolu · 4 years, 4 months ago
  22. 202adf5 kernel: Rename struct _poller by Andy Ross · 4 years, 4 months ago
  23. dadc664 kernel/poll: Move "_poller" into thread struct, fix COHERENCE collision by Andy Ross · 4 years, 4 months ago
  24. 310f60f kernel/poll: Store the work queue in the triggered work poll items by Andy Ross · 4 years, 4 months ago
  25. 6c82745 kernel/poll: Use a separate thread backpointer for triggered work by Andy Ross · 4 years, 4 months ago
  26. 0c7af40 kernel/poll: Make the poll callback a single-byte enum instead by Andy Ross · 4 years, 4 months ago
  27. ea6e4ad kernel: support non-identity RAM mapping by Andrew Boie · 4 years, 5 months ago
  28. 86c793a sys: util: Replace MIN(MAX(a, b), c) with CLAMP by Trond Einar Snekvik · 4 years, 5 months ago
  29. b3c5fe6 kernel: return error instead of misaligned k_thread object by Maximilian Bachmann · 4 years, 5 months ago
  30. 2d152ab kernel: limit thread local storage to Zephyr SDK by Daniel Leung · 4 years, 5 months ago
  31. 687f799 kernel/queue: fix queue append/get race by iva kik · 4 years, 5 months ago
  32. 0e30c6a kernel: wipe TLS when dropping to user mode by Andrew Boie · 4 years, 5 months ago
  33. 62cf196 kernel: support using thread local storage for errno by Daniel Leung · 4 years, 5 months ago
  34. 3887258 arm: cortex_m: add support for thread local storage by Daniel Leung · 4 years, 5 months ago
  35. 02b2035 kernel: add common bits to support TLS by Daniel Leung · 4 years, 5 months ago
  36. 240beb4 kconfig: add configs for thread local storage by Daniel Leung · 4 years, 5 months ago
  37. ad110d4 kernel: fatal: check if _current is NULL by Andrew Boie · 4 years, 5 months ago
  38. f5c3fc4 kernel: add arch_mem_unmap() interface by Andrew Boie · 4 years, 5 months ago
  39. 47c592c mmu: Fix mapping_pos calculation by Carlo Caione · 4 years, 5 months ago
  40. 933b420 kernel: add context pointer to thread->fn_abort by Andrew Boie · 4 years, 5 months ago
  41. fa6db61 userspace: do nothing if added to same domain by Andrew Boie · 4 years, 5 months ago
  42. d2c7179 kernel: document k_sleep with K_FOREVER by Anas Nashif · 4 years, 5 months ago
  43. 081605e kernel: do not queue a thread that is already queued by Anas Nashif · 4 years, 5 months ago
  44. bf69afc kernel: only resume suspended threads by Anas Nashif · 4 years, 5 months ago
  45. 52bf482 userspace: fix k_mem_domain_init() by Andrew Boie · 4 years, 5 months ago
  46. f161223 userspace: Fix thread index type in z_thread_perms_all_clear() by Carlo Caione · 4 years, 5 months ago
  47. a8d5437 soc/xtensa: Misc. checkpatch fixups by Andy Ross · 4 years, 5 months ago
  48. 4a8b3d1 kernel/poll: Mark incompatibility with KERNEL_COHERENCE by Andy Ross · 4 years, 5 months ago
  49. f6d32ab kernel: Add cache coherence management framework by Andy Ross · 4 years, 5 months ago
  50. 348a0fd userspace: make mem domain lock non-static by Andrew Boie · 4 years, 5 months ago
  51. 9f87dea userspace: fix k_mem_domain_destroy() by Andrew Boie · 4 years, 5 months ago
  52. b5a71f7 userspace: remove threads from domain on abort by Andrew Boie · 4 years, 5 months ago
  53. 211e5b7 kernel: k_busy_wait() should return immediately on zero timeout by David Komel · 4 years, 5 months ago
  54. 923caad kernel: delayed_work: update k_delayed_work_cancel documentation by Peter Bigot · 4 years, 6 months ago
  55. f69f935 kernel: delayed_work: fix race condition in k_delayed_work_cancel by Peter Bigot · 4 years, 6 months ago
  56. 4d33007 kernel: stack: fix stack_push spinlock and return by Jennifer Williams · 4 years, 6 months ago
  57. f1b86ca kernel: timer: update k_timer API for const correctness by Peter A. Bigot · 4 years, 6 months ago
  58. 16a4081 kernel: timer: update _timeout API for const correctness by Peter A. Bigot · 4 years, 6 months ago
  59. 83b9f69 code-guideline: Fixing code violation 10.4 Rule by Aastha Grover · 4 years, 6 months ago
  60. e0ca403 kernel: add assert for mis-used k_thread_create() by Andrew Boie · 4 years, 6 months ago
  61. f5a7e1a kernel: handle thread self-aborts on idle thread by Andrew Boie · 4 years, 6 months ago
  62. 28cb9da kernel: Deprecate CONFIG_MULTITHREADING by Carles Cufi · 4 years, 6 months ago
  63. f29a2d1 doc: Clarify semantics of k_msgq_put by Lauren Murphy · 4 years, 6 months ago
  64. b5c2ff9 kernel: add kconfig CONFIG_KERNEL_MEM_POOL by Daniel Leung · 4 years, 6 months ago
  65. 332b7df kernel: avoid implementation-defined behavior in timeout calculation by Peter Bigot · 4 years, 6 months ago
  66. 37f75d2 kernel: sched: bug fix for trace and monitor by Watson Zeng · 4 years, 6 months ago
  67. a8775ab sched: don't use local lock in z_tick_sleep() by Andrew Boie · 4 years, 6 months ago
  68. 8e0f6a5 sched: hold spinlock in z_time_slice() by Andrew Boie · 4 years, 6 months ago
  69. 83d7770 sched: check if runnable in sliceable() by Andrew Boie · 4 years, 6 months ago
  70. ffc5bdf sched: hold spinlock in z_thread_timeout() by Andrew Boie · 4 years, 6 months ago
  71. 1a7cd6d kernel: device: invert sense of ready bit by Peter Bigot · 4 years, 6 months ago
  72. 6e27478 benchmarking: remove execution benchmarking code by Anas Nashif · 4 years, 7 months ago
  73. 0ffcfa9 timing: introduce timing functions as a generic feature by Daniel Leung · 4 years, 7 months ago
  74. 1dddbec tracing: swap: bug fix and enhancement for ARC by Watson Zeng · 4 years, 7 months ago
  75. 5e0b55c kernel: demote k_mem_map to z_mem_map by Andrew Boie · 4 years, 7 months ago
  76. 7d32e9f mmu: support only identity RAM mapping by Andrew Boie · 4 years, 7 months ago
  77. 5408f31 debug: x86: Add gdbstub for X86 by Flavio Ceolin · 4 years, 7 months ago
  78. ffc1da0 kernel: add z_thread_single_abort to private hdr by Andrew Boie · 4 years, 7 months ago
  79. 3425c32 kernel: move stuff into z_thread_single_abort() by Andrew Boie · 4 years, 7 months ago
  80. ae5a761 kernel: Apply IRQ offload API change by Tomasz Bursztyka · 4 years, 7 months ago
  81. e18fcbb device: Const-ify all device driver instance pointers by Tomasz Bursztyka · 4 years, 7 months ago
  82. 2fcf762 userspace: update k_object API to support immutable objects by Peter Bigot · 4 years, 7 months ago
  83. aac9e2c device: Revise how initialization status is being handled by Tomasz Bursztyka · 4 years, 7 months ago
  84. 9247e8b code-guideline: Tag name should be a unique identifier by Spoorthy Priya Yerabolu · 4 years, 7 months ago
  85. 00f71b0 kernel: add CONFIG_ARCH_MEM_DOMAIN_SYNCHRONOUS_API by Andrew Boie · 4 years, 7 months ago
  86. d11e3c3 userspace: add debug logs to mem domain code by Andrew Boie · 4 years, 7 months ago
  87. 9bfc8d8 userspace: introduce default memory domain by Andrew Boie · 4 years, 7 months ago
  88. e433494 kernel: mmu: implement virtual mappings by Andrew Boie · 4 years, 7 months ago
  89. 49206a8 debug/coredump: add a primitive coredump mechanism by Daniel Leung · 4 years, 7 months ago
  90. 390537b tracing: trace mutex/semaphore using dedicated calls by Anas Nashif · 4 years, 7 months ago
  91. d1049dc tracing: swap: cleanup trace points and their location by Anas Nashif · 4 years, 7 months ago
  92. 5c31d00 tracing: trace k_sleep by Anas Nashif · 4 years, 7 months ago
  93. 3b75a08 Kconfig: move power management Kconfig into subsys/power by Anas Nashif · 4 years, 7 months ago
  94. 72792a5 userspace: cleanup mem domain assertions by Andrew Boie · 4 years, 7 months ago
  95. bc35b0b userspace: add optional member to memory domains by Andrew Boie · 4 years, 7 months ago
  96. 282cd93 kernel: don't reschedule thread abort in ISR by Andrew Boie · 4 years, 7 months ago
  97. 1ab9004 kernel/timeout: Fix coverity warning CID 211045 by David Leach · 4 years, 7 months ago
  98. 379b93f kernel: do not call swap if next ready thread is current thread by Anas Nashif · 4 years, 7 months ago
  99. 98d9b01 device: Apply driver_api/data attributes rename everywhere by Tomasz Bursztyka · 4 years, 8 months ago
  100. 60bd51a kernel: init: allow custom switch to main for no-multithreading case by Ioannis Glaropoulos · 4 years, 8 months ago