Changeset: b2b8caa329d1 for MonetDB
URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=b2b8caa329d1
Modified Files:
        monetdb5/mal/mal_atom.c
        monetdb5/mal/mal_debugger.c
Branch: default
Log Message:

Drop double function
The inspect.* routines can be used to see the atom table;


diffs (31 lines):

diff --git a/monetdb5/mal/mal_atom.c b/monetdb5/mal/mal_atom.c
--- a/monetdb5/mal/mal_atom.c
+++ b/monetdb5/mal/mal_atom.c
@@ -207,13 +207,3 @@ int malAtomSize(int size, int align, cha
        BATatoms[i].align = align;
        return i;
 }
-
-void showAtoms(stream *fd)
-{
-       int i;
-       for (i = 0; i< GDKatomcnt && BATatoms[i].name[0]; i++) {
-               mnstr_printf(fd, "%s", BATatoms[i].name);
-               if (BATatoms[i + 1].name[0]) mnstr_printf(fd, ",");
-       }
-       mnstr_printf(fd, "\n");
-}
diff --git a/monetdb5/mal/mal_debugger.c b/monetdb5/mal/mal_debugger.c
--- a/monetdb5/mal/mal_debugger.c
+++ b/monetdb5/mal/mal_debugger.c
@@ -442,10 +442,6 @@ retryRead:
                case 0:
                        m = 0;
                        break;
-               case 'a':
-                       if (strncmp("atom", b, 1) == 0)
-                               showAtoms(out);
-                       break;
                case 'c':
                        if (strncmp("catch", b, 3) == 0) {
                                /* catch the next exception */
_______________________________________________
checkin-list mailing list
[email protected]
https://www.monetdb.org/mailman/listinfo/checkin-list

Reply via email to