added uwsgi queue subsystem

This commit is contained in:
roberto@goyle
2011-02-16 08:12:21 +01:00
parent a34c0f5556
commit afba91ad61
10 changed files with 253 additions and 16 deletions
+3 -2
View File
@@ -25,8 +25,8 @@
#endif
#ifdef UWSGI_THREADING
#define UWSGI_GET_GIL (*up.gil_get)();
#define UWSGI_RELEASE_GIL (*up.gil_release)();
#define UWSGI_GET_GIL up.gil_get();
#define UWSGI_RELEASE_GIL up.gil_release();
#else
#define UWSGI_GET_GIL
#define UWSGI_RELEASE_GIL
@@ -213,6 +213,7 @@ void init_uwsgi_module_advanced(PyObject *);
void init_uwsgi_module_spooler(PyObject *);
void init_uwsgi_module_sharedarea(PyObject *);
void init_uwsgi_module_cache(PyObject *);
void init_uwsgi_module_queue(PyObject *);
PyObject *uwsgi_pyimport_by_filename(char *, char *);