/*
- * $Id: stmem.cc,v 1.41 1997/05/23 05:15:57 wessels Exp $
+ * $Id: stmem.cc,v 1.42 1997/06/01 23:21:49 wessels Exp $
*
* DEBUG: section 19 Memory Primitives
* AUTHOR: Harvest Derived
if (p == NULL)
return -1;
/* fatal_dump("memCopy: NULL mem_node"); *//* Can happen on async */
- assert (size > 0);
+ assert(size > 0);
/* Seek our way into store */
while ((t_off + p->len) < offset) {
t_off += p->len;
/*
- * $Id: store.cc,v 1.246 1997/06/01 18:19:56 wessels Exp $
+ * $Id: store.cc,v 1.247 1997/06/01 23:21:50 wessels Exp $
*
* DEBUG: section 20 Storeage Manager
* AUTHOR: Harvest Derived
return;
}
if (!BIT_TEST(e->flag, ENTRY_VALIDATED)) {
- if (storeDirMapBitTest(e->swap_file_number)) {
+ if (storeDirMapBitTest(e->swap_file_number)) {
/* someone took our file while we weren't looking */
callback(callback_data, -1);
return;
xfree(SwapDirs);
SwapDirs = tmp;
}
- debug(20,1,"Creating Swap Dir #%d in %s\n", ncache_dirs+1, path);
+ debug(20, 1, "Creating Swap Dir #%d in %s\n", ncache_dirs + 1, path);
tmp = SwapDirs + ncache_dirs;
tmp->path = xstrdup(path);
tmp->max_size = size;
/*
- * $Id: tools.cc,v 1.107 1997/05/23 20:46:13 wessels Exp $
+ * $Id: tools.cc,v 1.108 1997/06/01 23:21:38 wessels Exp $
*
* DEBUG: section 21 Misc Functions
* AUTHOR: Harvest Derived
#else
pid = waitpid(-1, &status, WNOHANG);
#endif
- /* no debug() here; bad things happen if the signal is delivered during _db_print() */
+ /* no debug() here; bad things happen if the signal is delivered during _db_print() */
#if HAVE_SIGACTION
} while (pid > 0);
#else