zoukankan      html  css  js  c++  java
  • 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.

  • 相关阅读:
    I Hate It HDU
    线段树为什么要开4倍空间
    敌兵布阵 HDU
    线段树 模板
    线段树原理详解
    HDU5037 Frog
    HDU5187 zhx's contest
    HDU5307 He is Flying
    UOJ#34. 多项式乘法
    Bzoj4766 文艺计算姬
  • 原文地址:https://www.cnblogs.com/JoJosBizarreAdventure/p/4651807.html
Copyright © 2011-2022 走看看