Changeset: c177321f28be for MonetDB
URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=c177321f28be
Modified Files:
        monetdb5/modules/mal/sysmon.mal
Branch: default
Log Message:

Textual changes


diffs (43 lines):

diff --git a/monetdb5/modules/mal/sysmon.mal b/monetdb5/modules/mal/sysmon.mal
--- a/monetdb5/modules/mal/sysmon.mal
+++ b/monetdb5/modules/mal/sysmon.mal
@@ -7,25 +7,31 @@
 module sysmon;
 
 pattern pause(id:sht)
-address SYSMONpause;
+address SYSMONpause
+comment "Suspend a running query";
 pattern pause(id:int)
-address SYSMONpause;
+address SYSMONpause
+comment "Suspend a running query";
 pattern pause(id:lng)
 address SYSMONpause
-comment "Temporary suspend a single query";
+comment "Suspend a running query";
 
 pattern resume(id:sht)
-address SYSMONresume;
+address SYSMONresume
+comment "Resume processing of a query ";
 pattern resume(id:int)
-address SYSMONresume;
+address SYSMONresume
+comment "Resume processing of a query ";
 pattern resume(id:lng)
 address SYSMONresume
-comment "Resume processing ";
+comment "Resume processing of a query ";
 
 pattern stop(id:sht)
-address SYSMONstop;
+address SYSMONstop
+comment "Stop a single query a.s.a.p.";
 pattern stop(id:int)
-address SYSMONstop;
+address SYSMONstop
+comment "Stop a single query a.s.a.p.";
 pattern stop(id:lng)
 address SYSMONstop
 comment "Stop a single query a.s.a.p.";
_______________________________________________
checkin-list mailing list
[email protected]
https://www.monetdb.org/mailman/listinfo/checkin-list

Reply via email to