view src/interface/SysRead.h @ 139:0f8ae55cacbe

tweak
author anatofuz
date Thu, 12 Dec 2019 14:27:05 +0900
parents e3dd8f96c2fb
children bb1b0676e27b
line wrap: on
line source

typedef struct SysRead<Type, Impl>{
   union Data* sys_read;
   union Data* impl;
   char* addr;
   int n;

   __code read(Impl* sys_read, union Data* impl, char* addr, int n, __code next(int ret,...));
   __code next(...);
} SysRead;