File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -125,7 +125,7 @@ extern volatile tskTCB * volatile pxCurrentTCB;
125
125
* The interrupts will have been disabled during the call to portSAVE_CONTEXT()
126
126
* so we need not worry about reading/writing to the stack pointer.
127
127
*/
128
- inline void portSAVE_CONTEXT () __attribute__((__always_inline__ , __noreturn__ ));
128
+ inline void portSAVE_CONTEXT () __attribute__((__always_inline__ ));
129
129
inline void portSAVE_CONTEXT (){
130
130
asm volatile ( "push r0 \n\t"
131
131
"in r0, __SREG__ \n\t"
@@ -190,7 +190,7 @@ inline void portSAVE_CONTEXT(){
190
190
* Opposite to portSAVE_CONTEXT(). Interrupts will have been disabled during
191
191
* the context save so we can write to the stack pointer.
192
192
*/
193
- inline void portRESTORE_CONTEXT () __attribute__((__always_inline__ , __noreturn__ ));
193
+ inline void portRESTORE_CONTEXT () __attribute__((__always_inline__ ));
194
194
inline void portRESTORE_CONTEXT (){
195
195
asm volatile ( "lds r26, pxCurrentTCB \n\t"
196
196
"lds r27, pxCurrentTCB + 1 \n\t"
You can’t perform that action at this time.
0 commit comments