diff options
Diffstat (limited to 'linden/indra/llmessage/lliopipe.h')
-rw-r--r-- | linden/indra/llmessage/lliopipe.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/linden/indra/llmessage/lliopipe.h b/linden/indra/llmessage/lliopipe.h index 97c6246..a451dd7 100644 --- a/linden/indra/llmessage/lliopipe.h +++ b/linden/indra/llmessage/lliopipe.h | |||
@@ -36,7 +36,7 @@ | |||
36 | 36 | ||
37 | #include <boost/intrusive_ptr.hpp> | 37 | #include <boost/intrusive_ptr.hpp> |
38 | #include <boost/shared_ptr.hpp> | 38 | #include <boost/shared_ptr.hpp> |
39 | #include "apr-1/apr_poll.h" | 39 | #include "apr_poll.h" |
40 | 40 | ||
41 | #include "llsd.h" | 41 | #include "llsd.h" |
42 | 42 | ||
@@ -46,11 +46,14 @@ class LLBufferArray; | |||
46 | class LLChannelDescriptors; | 46 | class LLChannelDescriptors; |
47 | 47 | ||
48 | // Debugging schmutz for deadlocks | 48 | // Debugging schmutz for deadlocks |
49 | #define LL_DEBUG_PUMPS | 49 | //#define LL_DEBUG_PUMPS |
50 | #ifdef LL_DEBUG_PUMPS | 50 | #ifdef LL_DEBUG_PUMPS |
51 | void pump_debug(const char *file, S32 line); | 51 | void pump_debug(const char *file, S32 line); |
52 | #define PUMP_DEBUG pump_debug(__FILE__, __LINE__); | 52 | #define PUMP_DEBUG pump_debug(__FILE__, __LINE__); |
53 | #define END_PUMP_DEBUG pump_debug("none", 0); | 53 | #define END_PUMP_DEBUG pump_debug("none", 0); |
54 | #else /* LL_DEBUG_PUMPS */ | ||
55 | #define PUMP_DEBUG | ||
56 | #define END_PUMP_DEBUG | ||
54 | #endif | 57 | #endif |
55 | 58 | ||
56 | 59 | ||