• init_mempool()


    一直疑惑不知道在51中是否能使用malloc,使用malloc需要做什么准备。后来看到了内存池初始化函数,查了一下资料init_mempool()函数申请的内存空间专为calloc,free, malloc, and realloc函数使用。见下方红字。

    init_mempool

    Summary: #include <stdlib.h>
    void init_mempool (
    void xdata *p, /* start of memory pool */
    unsigned int size); /* length of memory pool */

    Description: The init_mempool function initializes the memory
    management routines and provides the starting address and
    size of the memory pool. The p argument points to a
    memory area in xdata which is managed using the calloc,
    free, malloc, and realloc library functions. The size
    argument specifies the number of bytes to use for the
    memory pool.

    NOTE
    This function must be used to setup the memory pool before
    any other memory management functions (calloc, free,
    malloc, realloc) can be called. Call the init_mempool
    function only once at the beginning of your program.
    Source code is provided for this routine in the folder
    KEILC51LIB. You can modify the source to customize this
    function for your hardware environment. Refer to
    “Chapter 6. Advanced Programming Techniques” on page
    149 for more information.
    Return Value: None.

  • 相关阅读:
    面试题-JAVA算法题
    分布式
    linux中文件描述符fd和struct file结构体的释放
    Linux字符设备驱动
    Linux内存地址管理概述
    mnist卷积网络实现
    【TensorFlow官方文档】MNIST机器学习入门
    FCN笔记
    datetime.timedelta
    tensorflow中的函数获取Tensor维度的两种方法:
  • 原文地址:https://www.cnblogs.com/JoJosBizarreAdventure/p/4651807.html
Copyright © 2020-2023  润新知