comparison gsm-fw/riviera/rvf/rvf_cust.h @ 143:afceeeb2cba1

Our nuc-fw is destined to become gsm-fw, so I went ahead and did the big hg mv
author Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
date Tue, 12 Nov 2013 05:35:48 +0000
parents nuc-fw/riviera/rvf/rvf_cust.h@dd56546ad9e0
children
comparison
equal deleted inserted replaced
142:15d5977390c2 143:afceeeb2cba1
1 /****************************************************************************/
2 /* */
3 /* Name rvf_cust.h */
4 /* */
5 /* Function this file contains rvf cust definitions */
6 /* */
7 /* Version 0.1 */
8 /* */
9 /* Date Modification */
10 /* ------------------------------------ */
11 /* 29/11/2002 Create */
12 /* */
13 /* Author Stephanie Gerthoux(s-gerthoux@ti.com) */
14 /* */
15 /* (C) Copyright 2002 by Texas Instruments Incorporated, All Rights Reserved*/
16 /****************************************************************************/
17
18
19 #ifndef _RVF_CUST_H
20 #define _RVF_CUST_H
21
22
23 #include "../rv/general.h"
24
25
26 /* RVF will managed at most 2 pools of memory for dynamic allocation */
27 /* buffer pool structure*/
28 typedef struct _t_rvf_pool
29 {
30 void * start_address; /* address of the beginnig of the pool */
31 UINT32 pool_size; /* total size of the pool */
32 } T_RVF_POOL;
33
34
35 /* RVF function prototypes */
36
37 void _rvf_init_free_queue (UINT8 id, UINT32 size, void *p_mem);
38
39 #endif /* _RVF_I_H */