view src/interface/ErrorGear.h @ 310:ba8687746ff6

impl kernel_error codes
author anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
date Thu, 06 Feb 2020 12:25:34 +0900
parents 2a35e8c6f67c
children
line wrap: on
line source

typedef struct ErrorGear <Type, Impl> {
  __code error(Impl* error_gear, int err_code, __code next(...));
  __code panic(Impl* error_gear, char* msg);
  __code next(...);
} ErrorGear;