Displaying 2 results from an estimated 2 matches for "fdprint".
Did you mean:
dprint
2004 Feb 06
4
memory reduction
...+ pool->free = cur;
+ }
+ cur->bound += len;
+
+ if (cur->free + cur->bound >= pool->size)
+ {
+ pool->free = cur->next;
+
+ free(cur->start);
+ if (!(pool->flags & (POOL_INTERN | POOL_APPEND)))
+ free(cur);
+ pool->e_freed++;
+ }
+ return;
+}
+
+#define FDPRINT(label, value) \
+ snprintf(buf, BUFSIZ, label, value); \
+ write(fd, buf, strlen(buf));
+
+#define FDEXTSTAT(ext) \
+ snprintf(buf, BUFSIZ, " %12ld %5ld\n", \
+ (long) ext->free, \
+ (long) ext->bound); \
+ write(fd, buf, strlen(buf));
+
+void
+pool_stats(alloc_pool_t p, int fd,...
2007 Sep 22
0
rsync build on IA64 using icc
...achronism)
void setup_iconv();
^
lib/pool_alloc.c(247): remark #1418: external function definition with no prior declaration
pool_stats(alloc_pool_t p, int fd, int summarize)
^
lib/pool_alloc.c(258): remark #181: argument is incompatible with corresponding format string conversion
FDPRINT(" Extents created: %12ld\n", pool->e_created);
^
lib/pool_alloc.c(259): remark #181: argument is incompatible with corresponding format string conversion
FDPRINT(" Extents freed: %12ld\n", pool->e_freed);
^
/opt/intel/compilo_9/l_cc_c_9.1.042/bin/icc -...