diff options
| author | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2006-11-25 17:18:48 +0000 |
|---|---|---|
| committer | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2006-11-25 17:18:48 +0000 |
| commit | 6dcb75c26bbfec04b381bb99d75404f9fe50635d (patch) | |
| tree | b4b0e4e7b92c2d6563a848279cb5b48e7e183f96 /lib/base/ebase.h | |
| parent | 26a6141301937e0ef501b4cd7ae61b4f2293b7e5 (diff) | |
| download | enigma2-6dcb75c26bbfec04b381bb99d75404f9fe50635d.tar.gz enigma2-6dcb75c26bbfec04b381bb99d75404f9fe50635d.zip | |
python object refcount debugging code second try
Diffstat (limited to 'lib/base/ebase.h')
| -rw-r--r-- | lib/base/ebase.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/base/ebase.h b/lib/base/ebase.h index cf973c89..a399667e 100644 --- a/lib/base/ebase.h +++ b/lib/base/ebase.h @@ -179,7 +179,7 @@ class eMainloop ePtrList<eTimer> m_timer_list; bool app_quit_now; int loop_level; - int processOneEvent(unsigned int user_timeout, PyObject **res=0, PyObject *additional=0); + int processOneEvent(unsigned int user_timeout, PyObject **res=0, ePyObject additional=ePyObject()); int retval; pthread_mutex_t recalcLock; @@ -219,14 +219,14 @@ public: 1 - timeout 2 - signal */ - int iterate(unsigned int timeout=0, PyObject **res=0, PyObject *additional=0); - + int iterate(unsigned int timeout=0, PyObject **res=0, SWIG_PYOBJECT(ePyObject) additional=(PyObject*)0); + /* run will iterate endlessly until the app is quit, and return the exit code */ int runLoop(); /* our new shared polling interface. */ - PyObject *poll(PyObject *dict, PyObject *timeout); + PyObject *poll(SWIG_PYOBJECT(ePyObject) dict, SWIG_PYOBJECT(ePyObject) timeout); void interruptPoll(); void reset(); }; |
