Mercurial > hg > Members > kono > Cerium
annotate TaskManager/Test/simple_pack/spu_span.h @ 75:db2b7c565b89
*** empty log message ***
author | chiaki |
---|---|
date | Mon, 18 Feb 2008 04:47:28 +0900 |
parents | |
children | c2e178b3415f |
rev | line source |
---|---|
75 | 1 #ifndef INCLUDED_SPU_SPAN |
2 #define INCLUDED_SPU_SPAN | |
3 | |
4 #ifndef INCLUDED_SPAN_PACK | |
5 #include "span_pack.h" | |
6 #endif | |
7 | |
8 typedef struct SPUSPAN { | |
9 int length; | |
10 SPANPACK_PTR spp[64]; | |
11 SPUSPAN *next; | |
12 } SPUSPAN; | |
13 | |
14 typedef struct SPUSPANLIST { | |
15 SPUSPAN ss[6]; | |
16 } SPUSPANLIST; | |
17 | |
18 typedef struct SPLSSL { | |
19 SPUSPANLIST *ssl; | |
20 SPANPACKLIST *spl; | |
21 } SPLSSL; | |
22 | |
23 #endif |