mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
39 lines
1.3 KiB
C
39 lines
1.3 KiB
C
|
// Copyright 2015-2016 Espressif Systems (Shanghai) PTE LTD
|
||
|
//
|
||
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
||
|
// you may not use this file except in compliance with the License.
|
||
|
// You may obtain a copy of the License at
|
||
|
|
||
|
// http://www.apache.org/licenses/LICENSE-2.0
|
||
|
//
|
||
|
// Unless required by applicable law or agreed to in writing, software
|
||
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
||
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||
|
// See the License for the specific language governing permissions and
|
||
|
// limitations under the License.
|
||
|
#pragma once
|
||
|
|
||
|
#include <stdlib.h>
|
||
|
#include <stdint.h>
|
||
|
#include <freertos/FreeRTOS.h>
|
||
|
#include <soc/soc_memory_layout.h>
|
||
|
#include "multi_heap.h"
|
||
|
|
||
|
/* Some common heap registration data structures used
|
||
|
for heap_caps_init.c to share heap information with heap_caps.c
|
||
|
*/
|
||
|
|
||
|
/* Type for describing each registered heap */
|
||
|
typedef struct {
|
||
|
size_t tag;
|
||
|
uint32_t caps[SOC_HEAP_TAG_NO_PRIOS]; ///< Capabilities for this tag (as a prioritised set). Copied from soc_memory_tags so it's in RAM not flash.
|
||
|
intptr_t start;
|
||
|
intptr_t end;
|
||
|
portMUX_TYPE heap_mux;
|
||
|
multi_heap_handle_t heap;
|
||
|
} heap_t;
|
||
|
|
||
|
extern heap_t *registered_heaps;
|
||
|
extern size_t num_registered_heaps;
|
||
|
|