view src/impl/PipeRead.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 819537a244ee dec1fa964271
children
line wrap: on
line source

typedef struct PipeRead<Type, Isa> impl SysRead {
  struct pipe* p;
  int i;
  int n;
  __code cbc_piperead1(Type* sys_read, struct pipe* p, __code next(...));
  __code cbc_piperead2(Type* sys_read, int i, int n, struct pipe* p, __code next(...));
  __code cbc_piperead3(Type* sys_read, int i, struct pipe* p, __code next(...));
  __code next(...);
} PipeRead;