comparison include/params.h @ 0:68a98d68d62a

commit
author yutaka@localhost.localdomain
date Sun, 28 Mar 2010 19:47:00 +0900
parents
children 1e1b0d280427
comparison
equal deleted inserted replaced
-1:000000000000 0:68a98d68d62a
1 #ifndef INCLUDED_PARAMS
2 #define INCLUDED_PARAMS
3
4 #define SPE_NUM (6)
5 #define MAX_DMA_SIZE (1024*16)
6 #define ALIGN (16)
7
8 typedef struct {
9
10 unsigned long long next_task; //8
11 unsigned long long ea_out; //8
12
13 unsigned int next_task_size; //4
14 unsigned int size_out; //4
15 unsigned int pin_in; //4
16 unsigned int pin_out; //4
17
18 } send_params_head_t; //32
19
20 typedef struct {
21
22 send_params_head_t *head; //next data param
23 void *buff;
24
25 } send_params_t;
26
27 #endif