#rollup #smart #tezos #debugging #panic-hook #no-alloc #api-bindings

no-std mavryk-smart-rollup-panic-hook

Hook for capturing kernel panics & printing to debug log

1 unstable release

0.2.2 Jul 30, 2024

#1196 in WebAssembly


Used in mavryk-smart-rollup-entry…

MIT license

33KB
440 lines

Mavryk Smart Rollup Kernel SDK - panic hook

The panic hook may be used to capture kernel panics, and write them to the debug log. Execution is then aborted, to ensure no further issues could arise.

To disable execution abortion (which prevents panic unwinding) disable the abort feature flag.

To prevent writing the panic info to the debug log (which requires an allocator for formatting) disable the debug feature flag.


lib.rs:

Hook to capture kernel panics, and write them to the debug log.

The hook will abort execution once the panic has been printed to the debug log.

Dependencies