Changeset: adcc9f20a2d5 for MonetDB
URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=adcc9f20a2d5
Modified Files:
        monetdb5/mal/mal_profiler.c
Branch: Jun2016
Log Message:

Simplify maintenance of trace BATs.
Just drop the bats when cleaning up, and create new ones when we start
tracing.


diffs (53 lines):

diff --git a/monetdb5/mal/mal_profiler.c b/monetdb5/mal/mal_profiler.c
--- a/monetdb5/mal/mal_profiler.c
+++ b/monetdb5/mal/mal_profiler.c
@@ -666,26 +666,16 @@ TRACEcreate(const char *hnme, const char
        char buf[BUFSIZ];
 
        snprintf(buf, BUFSIZ, "trace_%s_%s", hnme, tnme);
-       b = BATdescriptor(BBPindex(buf));
-       if (b) {
-               BBPincref(b->batCacheid, TRUE);
-               return b;
-       }
 
-       b = BATnew(TYPE_void, tt, 1 << 16, PERSISTENT);
+       b = BATnew(TYPE_void, tt, 1 << 16, TRANSIENT);
        if (b == NULL)
                return NULL;
-
-       BATmode(b, PERSISTENT);
-       BATseqbase(b, 0);
-       BATkey(b, TRUE);
        BBPrename(b->batCacheid, buf);
-       BATcommit(b);
        return b;
 }
 
 
-#define CLEANUPprofile(X)  if (X) { BBPdecref((X)->batCacheid, TRUE); 
(X)->batPersistence = TRANSIENT; } (X) = NULL;
+#define CLEANUPprofile(X)  if (X) { BBPunfix((X)->batCacheid); } (X) = NULL;
 
 static void
 _cleanupProfiler(void)
@@ -761,19 +751,7 @@ clearTrace(void)
                return;     /* not initialized */
        }
        /* drop all trace tables */
-       BBPclear(TRACE_id_event->batCacheid);
-       BBPclear(TRACE_id_time->batCacheid);
-       BBPclear(TRACE_id_pc->batCacheid);
-       BBPclear(TRACE_id_thread->batCacheid);
-       BBPclear(TRACE_id_ticks->batCacheid);
-       BBPclear(TRACE_id_rssMB->batCacheid);
-       BBPclear(TRACE_id_tmpspace->batCacheid);
-       BBPclear(TRACE_id_inblock->batCacheid);
-       BBPclear(TRACE_id_oublock->batCacheid);
-       BBPclear(TRACE_id_minflt->batCacheid);
-       BBPclear(TRACE_id_majflt->batCacheid);
-       BBPclear(TRACE_id_nvcsw->batCacheid);
-       BBPclear(TRACE_id_stmt->batCacheid);
+       _cleanupProfiler();
        TRACE_init = 0;
        MT_lock_unset(&mal_contextLock);
        initTrace();
_______________________________________________
checkin-list mailing list
checkin-list@monetdb.org
https://www.monetdb.org/mailman/listinfo/checkin-list

Reply via email to