comparison nuc-fw/riviera/support/exception.c @ 129:7d7950d7f924

Riviera should be ready for the first TI fw build attempt
author Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
date Fri, 01 Nov 2013 06:13:58 +0000
parents 21de8d8e6ea7
children
comparison
equal deleted inserted replaced
128:789a9a95533f 129:7d7950d7f924
15 */ 15 */
16 16
17 // Authorization to use this source code communicated to Christophe Favergeon 17 // Authorization to use this source code communicated to Christophe Favergeon
18 // by email 18 // by email
19 19
20 #include "../../include/config.h"
21
20 #include <stdio.h> 22 #include <stdio.h>
21 #include <stdlib.h> 23 #include <stdlib.h>
22 #include <assert.h> 24 #include <assert.h>
23 #include "support/exception.h" 25 #include "exception.h"
24
25 #ifndef _WINDOWS
26 #include "config/swconfig.cfg"
27 #endif
28 26
29 27
30 /* global stack of exception context */ 28 /* global stack of exception context */
31 struct _exceptionContext_ *const _returnExceptionContext_[MAX_RVF_TASKS]= 29 struct _exceptionContext_ *const _returnExceptionContext_[MAX_RVF_TASKS]=
32 #if (!GSMLITE) 30 #if (!GSMLITE)
133 p=oldp; 131 p=oldp;
134 } 132 }
135 133
136 _currentExceptionContext_[rvf_get_taskid()]->stack=NULL; 134 _currentExceptionContext_[rvf_get_taskid()]->stack=NULL;
137 } 135 }
138
139
140