@@ -363,13 +363,13 @@ void poolFree(void *ptr);
363
363
*
364
364
* This function temporarily freezes the usage of a block for the current user,
365
365
* and allows temporary reallocation of the free capacity to a new client.
366
- * \n
366
+ *
367
367
* The program maintains pools of memory blocks with free capacity. In case of
368
368
* demand such a \ref block can temporarily allocate this capacity for new
369
369
* usage. Of course two (or more) clients share different parts of the same
370
370
* \ref block then, so a newer client must complete its usage before the old
371
371
* one resumes operation and may want to extend its usage of the \ref block.
372
- * \n
372
+ *
373
373
* Before \p ptr is added to \ref memUsedPool, the pool size is checked and
374
374
* increased by \ref MEM_POOL_GROW if full. This may lead to out-of-memory
375
375
* \ref outOfMemory "exit". But if \p ptr is added to the end of the \ref memUsedPool,
@@ -719,7 +719,7 @@ extern long g_pntrTempAllocStackTop; /* Top of stack for pntrTempAlloc functio
719
719
* but entries above are. So when this entry gets deallocated, dependent ones
720
720
* should follow suit. A function like \ref pntrTempAlloc or \ref pntrLet
721
721
* manage this automatic deallocation.
722
- * \n
722
+ *
723
723
* Nested functions using the \ref pntrTempAllocStack usually save the current
724
724
* value and set it to \ref g_pntrTempAllocStackTop, so they can create their
725
725
* local dependency chain. On return the saved value is restored.
@@ -748,7 +748,7 @@ temp_pntrString *pntrMakeTempAlloc(pntrString *s);
748
748
* future growing. If the \p target block is only partially used after copy it
749
749
* is added to the \ref memUsedPool. If \p source is empty, the \p target is
750
750
* set to \ref NULL_PNTRSTRING.
751
- * \n
751
+ *
752
752
* It is assumed that the value persisted in \p target is in fact computed from
753
753
* temporary operands in \ref pntrTempAllocStack. All blocks starting with
754
754
* the element at \ref g_pntrStartTempAllocStack are returned to the
0 commit comments