aboutsummaryrefslogtreecommitdiff
path: root/src/daemon/memorypool.h
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2007-12-20 04:45:24 +0000
committerChristian Grothoff <christian@grothoff.org>2007-12-20 04:45:24 +0000
commit6c99e978861b6b0bd0a50d7e7190e3fbdaf7aacf (patch)
tree70e2b2ba2b7d0e1d190d2933a2e740c100190cca /src/daemon/memorypool.h
parentc490e64780fd1c45592f5528bf755956f0f2eddb (diff)
downloadlibmicrohttpd-6c99e978861b6b0bd0a50d7e7190e3fbdaf7aacf.tar.gz
libmicrohttpd-6c99e978861b6b0bd0a50d7e7190e3fbdaf7aacf.zip
formatting
Diffstat (limited to 'src/daemon/memorypool.h')
-rw-r--r--src/daemon/memorypool.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/daemon/memorypool.h b/src/daemon/memorypool.h
index 1d8ffb32..537fb61e 100644
--- a/src/daemon/memorypool.h
+++ b/src/daemon/memorypool.h
@@ -84,13 +84,11 @@ void *MHD_pool_reallocate (struct MemoryPool *pool,
84/** 84/**
85 * Clear all entries from the memory pool except 85 * Clear all entries from the memory pool except
86 * for "keep" of the given "size". 86 * for "keep" of the given "size".
87 * 87 *
88 * @param keep pointer to the entry to keep (maybe NULL) 88 * @param keep pointer to the entry to keep (maybe NULL)
89 * @param size how many bytes need to be kept at this address 89 * @param size how many bytes need to be kept at this address
90 * @return addr new address of "keep" (if it had to change) 90 * @return addr new address of "keep" (if it had to change)
91 */ 91 */
92void *MHD_pool_reset(struct MemoryPool * pool, 92void *MHD_pool_reset (struct MemoryPool *pool, void *keep, unsigned int size);
93 void * keep,
94 unsigned int size);
95 93
96#endif 94#endif