FreeCalypso > hg > freecalypso-sw
changeset 474:6e6d4c1ec733
os_isr.c: os_CreateOSISR(): missed the assignment to .stack
author | Michael Spacefalcon <msokolov@ivan.Harhan.ORG> |
---|---|
date | Fri, 27 Jun 2014 01:20:23 +0000 |
parents | 658b141a1600 |
children | dcb543907cbb |
files | gsm-fw/gpf/osl/os_isr.c |
diffstat | 1 files changed, 1 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/gsm-fw/gpf/osl/os_isr.c Fri Jun 27 00:05:23 2014 +0000 +++ b/gsm-fw/gpf/osl/os_isr.c Fri Jun 27 01:20:23 2014 +0000 @@ -128,6 +128,7 @@ goto error; strncpy(OSISRTable[handle].name, name, RESOURCE_NAMELEN); OSISRTable[handle].name[RESOURCE_NAMELEN-1] = 0; + OSISRTable[handle].stack = hisr_stack; *hisr_handle = handle; os_SetInterruptState(old_state, &state); return(OS_OK);