File tree 1 file changed +7
-7
lines changed 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change 32
32
#include "supervisor/memory.h"
33
33
34
34
enum {
35
- SUPERVISOR_NEXT_CODE_OPT_RELOAD_ON_SUCCESS = 0x1 ,
36
- SUPERVISOR_NEXT_CODE_OPT_RELOAD_ON_ERROR = 0x2 ,
37
- SUPERVISOR_NEXT_CODE_OPT_STICKY_ON_SUCCESS = 0x4 ,
38
- SUPERVISOR_NEXT_CODE_OPT_STICKY_ON_ERROR = 0x8 ,
39
- SUPERVISOR_NEXT_CODE_OPT_STICKY_ON_RELOAD = 0x10 ,
40
- SUPERVISOR_NEXT_CODE_OPT_NEWLY_SET = 0x20 ,
35
+ SUPERVISOR_NEXT_CODE_OPT_RELOAD_ON_SUCCESS = 0x1 ,
36
+ SUPERVISOR_NEXT_CODE_OPT_RELOAD_ON_ERROR = 0x2 ,
37
+ SUPERVISOR_NEXT_CODE_OPT_STICKY_ON_SUCCESS = 0x4 ,
38
+ SUPERVISOR_NEXT_CODE_OPT_STICKY_ON_ERROR = 0x8 ,
39
+ SUPERVISOR_NEXT_CODE_OPT_STICKY_ON_RELOAD = 0x10 ,
40
+ SUPERVISOR_NEXT_CODE_OPT_NEWLY_SET = 0x20 ,
41
41
};
42
42
43
43
typedef struct {
44
44
uint8_t options ;
45
45
char filename [];
46
46
} next_code_info_t ;
47
47
48
- extern supervisor_allocation * next_code_allocation ;
48
+ extern supervisor_allocation * next_code_allocation ;
49
49
50
50
extern volatile bool reload_requested ;
51
51
You can’t perform that action at this time.
0 commit comments