File tree Expand file tree Collapse file tree 2 files changed +21
-9
lines changed Expand file tree Collapse file tree 2 files changed +21
-9
lines changed Original file line number Diff line number Diff line change @@ -85,7 +85,7 @@ Functions
85
85
.. function :: heap_locked()
86
86
87
87
Lock or unlock the heap. When locked no memory allocation can occur and a
88
- `MemoryError ` will be raised if any heap allocation is attempted.
88
+ `builtins. MemoryError ` will be raised if any heap allocation is attempted.
89
89
`heap_locked() ` returns a true value if the heap is currently locked.
90
90
91
91
These functions can be nested, ie `heap_lock() ` can be called multiple times
Original file line number Diff line number Diff line change 60
60
#endif
61
61
62
62
// CIRCUITPY-CHANGE: force definitions
63
- #ifndef N_X64
64
- #define N_X64 (0)
63
+ #ifndef N_ARM
64
+ #define N_ARM (0)
65
65
#endif
66
66
67
- #ifndef N_X86
68
- #define N_X86 (0)
67
+ #ifndef N_DEBUG
68
+ #define N_DEBUG (0)
69
+ #endif
70
+
71
+ #ifndef N_NLR_SETJMP
72
+ #define N_NLR_SETJMP (0)
73
+ #endif
74
+
75
+ #ifndef N_RV32
76
+ #define N_RV32 (0)
69
77
#endif
70
78
71
79
#ifndef N_THUMB
72
80
#define N_THUMB (0)
73
81
#endif
74
82
75
- #ifndef N_ARM
76
- #define N_ARM (0)
83
+ #ifndef N_X64
84
+ #define N_X64 (0)
85
+ #endif
86
+
87
+ #ifndef N_X86
88
+ #define N_X86 (0)
77
89
#endif
78
90
79
91
#ifndef N_XTENSA
80
92
#define N_XTENSA (0)
81
93
#endif
82
94
83
- #ifndef N_NLR_SETJMP
84
- #define N_NLR_SETJMP (0)
95
+ #ifndef N_XTENSAWIN
96
+ #define N_XTENSWIN (0)
85
97
#endif
86
98
87
99
#ifndef N_PRELUDE_AS_BYTES_OBJ
You can’t perform that action at this time.
0 commit comments