py/malloc: MICROPY_MEM_STATS requires MICROPY_MALLOC_USES_ALLOCATED_SIZE.
Error out if they're set incompatibly.
This commit is contained in:
parent
f5e097021c
commit
88a8043a27
|
@ -39,6 +39,9 @@
|
|||
#endif
|
||||
|
||||
#if MICROPY_MEM_STATS
|
||||
#if !MICROPY_MALLOC_USES_ALLOCATED_SIZE
|
||||
#error MICROPY_MEM_STATS requires MICROPY_MALLOC_USES_ALLOCATED_SIZE
|
||||
#endif
|
||||
#define UPDATE_PEAK() { if (MP_STATE_MEM(current_bytes_allocated) > MP_STATE_MEM(peak_bytes_allocated)) MP_STATE_MEM(peak_bytes_allocated) = MP_STATE_MEM(current_bytes_allocated); }
|
||||
#endif
|
||||
|
||||
|
|
Loading…
Reference in New Issue