Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

pmem_pool must be passed a valid pointer to the address of a declared MEM_POOL variable.

Example Usage

          MEM_POOL  AppMemPool;
          LIB_ERR   err;
           
          Mem_PoolClr(&AppMemPool, &err);  /* Clear memory pool. */
           
          if (err != LIB_ERR_NONE) {
              printf("COULD NOT CLEAR MEMORY POOL.");
          }