Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found
Select Git revision
  • ip-save-debugging
  • master
  • wip/graph-iso
3 results

Target

Select target project
  • dosek-verification/osek-verification
  • mgttlinger/osek-verification
2 results
Select Git revision
  • ip-save-debugging
  • master
  • wip/graph-iso
3 results
Show changes
Commits on Source (1)
...@@ -136,7 +136,7 @@ void _print_os_state(const char *format, const char *syscall, const char *func) ...@@ -136,7 +136,7 @@ void _print_os_state(const char *format, const char *syscall, const char *func)
} }
static forceinline int _do_trigger_interrupt(uint8_t i, const char *format, const char *syscall, const char *func) { static forceinline int _do_trigger_interrupt(uint8_t i, const char *format, const char *syscall, const char *func) {
if (arch::irq.interrupts_enabled()) { if (arch::irq.interrupts_enabled(i)) {
_print_os_state(format, syscall, func); _print_os_state(format, syscall, func);
arch::irq.deliver_interrupt(i); arch::irq.deliver_interrupt(i);
return 1; return 1;
......