Update of /cvsroot/monetdb/MonetDB5/src/modules/mal
In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv12867

Modified Files:
        mdb.mx pcre.mx 
Log Message:
mdb- add the mdb.dump() routine
pcre- just text to silence web construction


Index: mdb.mx
===================================================================
RCS file: /cvsroot/monetdb/MonetDB5/src/modules/mal/mdb.mx,v
retrieving revision 1.60
retrieving revision 1.61
diff -u -d -r1.60 -r1.61
--- mdb.mx      7 Aug 2007 23:51:07 -0000       1.60
+++ mdb.mx      16 Aug 2007 07:01:57 -0000      1.61
@@ -162,6 +162,10 @@
 pattern getStackTrace():bat[:void,:str]
 address MDBStkTrace;
 
+pattern dump()
+address MDBdump
+comment "Dump instruction, stacktrace, and stack";
+
 pattern getDefinition():bat[:void,:str] 
 address MDBgetDefinition
 comment "Returns a string representation of the current function 
@@ -835,6 +839,10 @@
        (void) ret;
        return MAL_SUCCEED;
 }
+str MDBdump(MalBlkPtr mb, MalStkPtr stk, InstrPtr pci){
+       mdbDump(mb,stk,pci);
+       return MAL_SUCCEED;
+}
 str MDBdummy(int *ret){
        (void) ret;
        throw(MAL, "mdb.dummy", "Dummy routine called");

Index: pcre.mx
===================================================================
RCS file: /cvsroot/monetdb/MonetDB5/src/modules/mal/pcre.mx,v
retrieving revision 1.48
retrieving revision 1.49
diff -u -d -r1.48 -r1.49
--- pcre.mx     25 May 2007 11:01:21 -0000      1.48
+++ pcre.mx     16 Aug 2007 07:01:57 -0000      1.49
@@ -17,8 +17,8 @@
 @f pcre
 @a N. Nes
 @+ PCRE library interface
-The  PCRE library is a set of functions that implement regular expression
-pattern matching using the same syntax  and  semantics  as  Perl,
+The  PCRE library is a set of functions that implement regular 
+expression pattern matching using the same syntax  and  semantics  as  Perl,
 with  just  a  few  differences.  The  current  implementation of PCRE
 (release 4.x) corresponds approximately with Perl 5.8, including  support
 for  UTF-8  encoded  strings.   However,  this support has to be


-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
_______________________________________________
Monetdb-checkins mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/monetdb-checkins

Reply via email to