Exceptions in BPF
Exceptions in BPF
Posted Jul 21, 2023 16:55 UTC (Fri) by adobriyan (subscriber, #30858)In reply to: Exceptions in BPF by Cyberax
Parent article: Exceptions in BPF
Superficially kuint devs did exceptions first:
struct kunit_try_catch {
/* private: internal use only. */
struct kunit *test;
struct completion *try_completion;
int try_result;
kunit_try_catch_func_t try;
kunit_try_catch_func_t catch;
void *context;
};
