Changeset: d0040352d330 for MonetDB
URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=d0040352d330
Modified Files:
clients/mapiclient/tomograph.c
gdk/gdk_bbp.c
gdk/gdk_heap.c
Branch: default
Log Message:
merge with default
diffs (126 lines):
diff --git a/clients/mapiclient/tomograph.c b/clients/mapiclient/tomograph.c
--- a/clients/mapiclient/tomograph.c
+++ b/clients/mapiclient/tomograph.c
@@ -1579,8 +1579,8 @@ update(int state, int thread, lng clktic
/* monitor top level function brackets */
if (state == START && fcn && strncmp(fcn, "function", 8) == 0) {
- capturing++;
- starttime = clkticks;
+ if (capturing++ == 0)
+ starttime = clkticks;
if (currentfunction == 0)
currentfunction = strdup(fcn+9);
if (debug)
diff --git a/gdk/gdk_bbp.c b/gdk/gdk_bbp.c
--- a/gdk/gdk_bbp.c
+++ b/gdk/gdk_bbp.c
@@ -3169,7 +3169,6 @@ do_backup(const char *srcdir, const char
* and a backup already exists in the main backup directory
* (see GDKupgradevarheap), move the file */
if (subcommit && file_exists(BAKDIR, nme, extbase)) {
- assert(h->storage == STORE_MMAP);
if (file_move(BAKDIR, SUBDIR, nme, extbase))
return -1;
} else if (h->storage != STORE_MMAP) {
diff --git a/gdk/gdk_heap.c b/gdk/gdk_heap.c
--- a/gdk/gdk_heap.c
+++ b/gdk/gdk_heap.c
@@ -130,7 +130,7 @@ HEAPalloc(Heap *h, size_t nitems, size_t
}
}
- if (h->filename == NULL || (h->size < minsize)) {
+ if (h->filename == NULL || h->size < minsize) {
h->storage = STORE_MEM;
h->base = (char *) GDKmallocmax(h->size, &h->size, 0);
HEAPDEBUG fprintf(stderr, "#HEAPalloc " SZFMT " " PTRFMT "\n",
h->size, PTRFMTCAST h->base);
@@ -140,7 +140,7 @@ HEAPalloc(Heap *h, size_t nitems, size_t
h->filename = NULL;
- if (stat(nme, &st) != 0) {
+ if (stat(nme, &st) < 0) {
h->storage = STORE_MMAP;
h->base = HEAPcreatefile(&h->size, of, h->storage);
h->filename = of;
@@ -191,7 +191,7 @@ int
HEAPextend(Heap *h, size_t size)
{
char nme[PATHLENGTH], *ext = NULL;
- char *failure = "None";
+ const char *failure = "None";
if (h->filename) {
strncpy(nme, h->filename, sizeof(nme));
@@ -199,9 +199,9 @@ HEAPextend(Heap *h, size_t size)
ext = decompose_filename(nme);
}
if (size <= h->size)
- return 0;
- else
- failure = "size > h->size";
+ return 0; /* nothing to do */
+
+ failure = "size > h->size";
if (h->storage != STORE_MEM) {
char *p;
@@ -219,10 +219,9 @@ HEAPextend(Heap *h, size_t size)
if (p) {
h->size = size;
h->base = p;
- return 0;
- } else {
- failure = "MT_mremap() failed";
+ return 0; /* success */
}
+ failure = "MT_mremap() failed";
} else {
/* extend a malloced heap, possibly switching over to
* file-mapped storage */
@@ -245,9 +244,8 @@ HEAPextend(Heap *h, size_t size)
h->base = GDKreallocmax(h->base, size, &h->size, 0);
HEAPDEBUG fprintf(stderr, "#HEAPextend: extending
malloced heap " SZFMT " " SZFMT " " PTRFMT " " PTRFMT "\n", size, h->size,
PTRFMTCAST p, PTRFMTCAST h->base);
if (h->base)
- return 0;
- else
- failure = "h->storage == STORE_MEM && !must_map
&& !h->base";
+ return 0; /* success */
+ failure = "h->storage == STORE_MEM && !must_map &&
!h->base";
}
/* too big: convert it to a disk-based temporary heap */
if (can_mmap) {
@@ -281,9 +279,8 @@ HEAPextend(Heap *h, size_t size)
memcpy(h->base, bak.base, bak.free);
HEAPfree(&bak);
return 0;
- } else {
- failure = "h->storage == STORE_MEM &&
can_map && !h->base";
}
+ failure = "h->storage == STORE_MEM && can_map
&& !h->base";
}
fd = GDKfdlocate(nme, "wb", ext);
if (fd >= 0) {
@@ -305,9 +302,8 @@ HEAPextend(Heap *h, size_t size)
memcpy(h->base, bak.base, bak.free);
HEAPfree(&bak);
return 0;
- } else {
- failure = "h->storage == STORE_MEM &&
can_map && fd >= 0 && HEAPload() < 0";
}
+ failure = "h->storage == STORE_MEM && can_map
&& fd >= 0 && HEAPload() < 0";
/* couldn't allocate, now first save
* data to file */
if (HEAPsave_intern(&bak, nme, ext, ".tmp") <
0) {
@@ -322,9 +318,8 @@ HEAPextend(Heap *h, size_t size)
/* success! */
GDKclrerr(); /* don't leak errors
from e.g. HEAPload */
return 0;
- } else {
- failure = "h->storage == STORE_MEM &&
can_map && fd >= 0 && HEAPload_intern() < 0";
}
+ failure = "h->storage == STORE_MEM && can_map
&& fd >= 0 && HEAPload_intern() < 0";
/* we failed */
} else {
failure = "h->storage == STORE_MEM && can_map
&& fd < 0";
_______________________________________________
checkin-list mailing list
[email protected]
https://www.monetdb.org/mailman/listinfo/checkin-list