]> sourceware.org Git - systemtap.git/commitdiff
Add missing pure virtual function definitions to tapset-python.cxx.
authorDavid Smith <dsmith@redhat.com>
Thu, 20 Oct 2016 17:49:05 +0000 (12:49 -0500)
committerDavid Smith <dsmith@redhat.com>
Thu, 20 Oct 2016 17:49:05 +0000 (12:49 -0500)
tapset-python.cxx

index a66e82b1d209c23c5434e0aae616e79871ca08de..126717c1396bf6fcb3e31f3314c281181ce518d7 100644 (file)
@@ -70,6 +70,8 @@ public:
 
   void enroll (python_derived_probe* probe);
   void emit_module_decls (systemtap_session& s);
+  void emit_module_init (systemtap_session& ) { }
+  void emit_module_exit (systemtap_session& ) { }
 };
 
 
@@ -90,7 +92,6 @@ private:
 
   // python3 related synthetic probes
   derived_probe* python3_procfs_probe;
-  probe* python3_procfs_probe;
   probe* python3_call_probe;
   probe* python3_line_probe;
   probe* python3_return_probe;
@@ -131,8 +132,6 @@ python_derived_probe::python_derived_probe (systemtap_session &, probe* p,
 void
 python_derived_probe::join_group (systemtap_session &s)
 {
-// FIXME: Hmm, we'll need to handle python probes by putting uprobes
-// on our custom python module's tracepoints.
   if (! s.python_derived_probes)
     {
       s.python_derived_probes = new python_derived_probe_group ();
This page took 0.027865 seconds and 5 git commands to generate.