summaryrefslogtreecommitdiffstats
path: root/staptree.h
diff options
context:
space:
mode:
Diffstat (limited to 'staptree.h')
-rw-r--r--staptree.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/staptree.h b/staptree.h
index 54194c7b..8235a535 100644
--- a/staptree.h
+++ b/staptree.h
@@ -1,5 +1,5 @@
// -*- C++ -*-
-// Copyright (C) 2005-2007 Red Hat Inc.
+// Copyright (C) 2005-2008 Red Hat Inc.
// Copyright (C) 2006 Intel Corporation.
//
// This file is part of systemtap, and is free software. You can
@@ -595,7 +595,8 @@ struct probe
probe ();
void print (std::ostream& o) const;
virtual void printsig (std::ostream &o) const;
- virtual void collect_derivation_chain (std::vector<derived_probe*> &probes_list);
+ virtual void collect_derivation_chain (std::vector<probe*> &probes_list);
+ virtual const probe_alias *get_alias () const { return 0; }
virtual probe* basest () { return this; }
virtual ~probe() {}
bool privileged;