]> sourceware.org Git - systemtap.git/blob - task_finder.h
Consolidate task_finder/vma tracker initialization.
[systemtap.git] / task_finder.h
1 // -*- C++ -*-
2 // Copyright (C) 2009 Red Hat Inc.
3 //
4 // This file is part of systemtap, and is free software. You can
5 // redistribute it and/or modify it under the terms of the GNU General
6 // Public License (GPL); either version 2, or (at your option) any
7 // later version.
8
9 #ifndef TASK_FINDER_H
10 #define TASK_FINDER_H
11
12 // Declare that task_finder is needed in this session
13 void enable_task_finder(systemtap_session& s);
14
15 // Declare that vma tracker is needed in this session,
16 // implies that the task_finder is needed.
17 void enable_vma_tracker(systemtap_session& s);
18
19 // Whether the vma tracker is needed in this session.
20 bool vma_tracker_enabled(systemtap_session& s);
21
22 #endif // TASK_FINDER_H
23
24 /* vim: set sw=2 ts=8 cino=>4,n-2,{2,^-2,t0,(0,u0,w1,M1 : */
This page took 0.041172 seconds and 6 git commands to generate.