annotate src/interface/Err.h @ 272:600fd7db5344

fix_build_about_kernel_error
author anatofuz
date Thu, 06 Feb 2020 17:58:56 +0900
parents src/interface/Error.h@11cd1c607427
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
272
600fd7db5344 fix_build_about_kernel_error
anatofuz
parents: 271
diff changeset
1 typedef struct Err <Type, Impl> {
600fd7db5344 fix_build_about_kernel_error
anatofuz
parents: 271
diff changeset
2 __code error(Impl* err, int err_code, __code next(...));
600fd7db5344 fix_build_about_kernel_error
anatofuz
parents: 271
diff changeset
3 __code panic(Impl* err, char* msg);
267
ba8687746ff6 impl kernel_error codes
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 167
diff changeset
4 __code next(...);
272
600fd7db5344 fix_build_about_kernel_error
anatofuz
parents: 271
diff changeset
5 } Err;