Stavo curiosando tra i file di intestazione del mio microcontrollore MSP430 e mi sono imbattuto in questo <setjmp.h>
:
/* r3 does not have to be saved */
typedef struct
{
uint32_t __j_pc; /* return address */
uint32_t __j_sp; /* r1 stack pointer */
uint32_t __j_sr; /* r2 status register */
uint32_t __j_r4;
uint32_t __j_r5;
uint32_t __j_r6;
uint32_t __j_r7;
uint32_t __j_r8;
uint32_t __j_r9;
uint32_t __j_r10;
uint32_t __j_r11;
} jmp_buf[1]; /* size = 20 bytes */
Capisco che dichiara una struttura anonima e typedef lo fa jmp_buf
, ma non riesco a capire a cosa [1]
serva. So che dichiara jmp_buf
di essere un array con un membro (di questa struttura anonima), ma non riesco a immaginare a cosa serva. Qualche idea?