author | zecke <zecke> | 2002-10-12 00:40:14 (UTC) |
---|---|---|
committer | zecke <zecke> | 2002-10-12 00:40:14 (UTC) |
commit | 39b88e5809e50a4951869434b8015c55265fc495 (patch) (side-by-side diff) | |
tree | ad444833b2c9fd0c672c7dfdcc99b3a33ace8b8d /noncore | |
parent | 0a3ffe7e5657bed4cb77d9bc23457755e2d02591 (diff) | |
download | opie-39b88e5809e50a4951869434b8015c55265fc495.zip opie-39b88e5809e50a4951869434b8015c55265fc495.tar.gz opie-39b88e5809e50a4951869434b8015c55265fc495.tar.bz2 |
No does not have any public c'tor
-rw-r--r-- | noncore/apps/opie-console/procctl.cpp | 6 | ||||
-rw-r--r-- | noncore/apps/opie-console/procctl.h | 5 |
2 files changed, 10 insertions, 1 deletions
diff --git a/noncore/apps/opie-console/procctl.cpp b/noncore/apps/opie-console/procctl.cpp index 6839a84..ff6bea8 100644 --- a/noncore/apps/opie-console/procctl.cpp +++ b/noncore/apps/opie-console/procctl.cpp @@ -7,4 +7,5 @@ ProcContainer *ProcCtl::m_last = 0; +ProcCtl* ProcCtl::m_self = 0; ProcCtl::ProcCtl() { @@ -13,4 +14,9 @@ ProcCtl::ProcCtl() { ProcCtl::~ProcCtl() { } +ProcCtl* ProcCtl::self() { + if (!m_self ) { + m_self = new ProcCtl; + } +} void ProcCtl::add(pid_t pi, int fd ) { ProcContainer * con = new ProcContainer; 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 @@ -18,8 +18,10 @@ struct ProcContainer { class ProcCtl { -public: +private: ProcCtl(); +public: ~ProcCtl(); + ProcCtl* self(); int status(pid_t)const; void add( pid_t, int fd ); @@ -29,4 +31,5 @@ private: static void signal_handler(int); static ProcContainer* m_last; + static ProcCtl* m_self; }; |