annotate src/impl/PipeRead.h @ 138:e3dd8f96c2fb

add impl file read interface
author anatofuz
date Thu, 12 Dec 2019 14:13:51 +0900
parents 9bfc4fbb5502
children 819537a244ee dec1fa964271
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
104
9bfc4fbb5502 create PipeRead.cbc
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1 typedef struct PipeRead<Type, Isa> impl SysRead {
138
e3dd8f96c2fb add impl file read interface
anatofuz
parents: 104
diff changeset
2 struct pipe* p;
e3dd8f96c2fb add impl file read interface
anatofuz
parents: 104
diff changeset
3 int i;
e3dd8f96c2fb add impl file read interface
anatofuz
parents: 104
diff changeset
4 int n;
e3dd8f96c2fb add impl file read interface
anatofuz
parents: 104
diff changeset
5 __code cbc_piperead1(Type* sys_read, struct pipe* p, __code next(...));
e3dd8f96c2fb add impl file read interface
anatofuz
parents: 104
diff changeset
6 __code cbc_piperead2(Type* sys_read, int i, int n,struct pipe* p, __code next(...));
e3dd8f96c2fb add impl file read interface
anatofuz
parents: 104
diff changeset
7 __code cbc_piperead3(Type* sys_read, struct pipe* p, int i, __code next(...));
e3dd8f96c2fb add impl file read interface
anatofuz
parents: 104
diff changeset
8 __code next(...);
104
9bfc4fbb5502 create PipeRead.cbc
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
9 } PipeRead;
138
e3dd8f96c2fb add impl file read interface
anatofuz
parents: 104
diff changeset
10
e3dd8f96c2fb add impl file read interface
anatofuz
parents: 104
diff changeset
11 /*
e3dd8f96c2fb add impl file read interface
anatofuz
parents: 104
diff changeset
12 __code cbc_piperead1(Impl* sys_read, struct pipe* p);
e3dd8f96c2fb add impl file read interface
anatofuz
parents: 104
diff changeset
13 __code cbc_piperead2(Impl* sys_read, int i, int n,struct pipe* p);
e3dd8f96c2fb add impl file read interface
anatofuz
parents: 104
diff changeset
14 __code cbc_piperead3(Impl* sys_read, struct pipe* p, int i);
e3dd8f96c2fb add impl file read interface
anatofuz
parents: 104
diff changeset
15 */