view src/interface/SysRead.h @ 152:d3f97de63622

merge from menikon branch
author anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
date Mon, 16 Dec 2019 21:55:29 +0900
parents dec1fa964271
children
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;