summaryrefslogtreecommitdiff
path: root/noncore/apps/opie-console/procctl.h
authorzecke <zecke>2002-10-12 00:40:14 (UTC)
committer zecke <zecke>2002-10-12 00:40:14 (UTC)
commit39b88e5809e50a4951869434b8015c55265fc495 (patch) (unidiff)
treead444833b2c9fd0c672c7dfdcc99b3a33ace8b8d /noncore/apps/opie-console/procctl.h
parent0a3ffe7e5657bed4cb77d9bc23457755e2d02591 (diff)
downloadopie-39b88e5809e50a4951869434b8015c55265fc495.zip
opie-39b88e5809e50a4951869434b8015c55265fc495.tar.gz
opie-39b88e5809e50a4951869434b8015c55265fc495.tar.bz2
No does not have any public c'tor
Diffstat (limited to 'noncore/apps/opie-console/procctl.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/opie-console/procctl.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/noncore/apps/opie-console/procctl.h b/noncore/apps/opie-console/procctl.h
index e2161f3..5e96423 100644
--- a/noncore/apps/opie-console/procctl.h
+++ b/noncore/apps/opie-console/procctl.h
@@ -17,10 +17,12 @@ struct ProcContainer {
17}; 17};
18 18
19class ProcCtl { 19class ProcCtl {
20public: 20private:
21 ProcCtl(); 21 ProcCtl();
22public:
22 ~ProcCtl(); 23 ~ProcCtl();
23 24
25 ProcCtl* self();
24 int status(pid_t)const; 26 int status(pid_t)const;
25 void add( pid_t, int fd ); 27 void add( pid_t, int fd );
26 void remove( pid_t ); 28 void remove( pid_t );
@@ -28,6 +30,7 @@ public:
28private: 30private:
29 static void signal_handler(int); 31 static void signal_handler(int);
30 static ProcContainer* m_last; 32 static ProcContainer* m_last;
33 static ProcCtl* m_self;
31}; 34};
32 35
33#endif 36#endif