diff options
author | Jacek Antonelli | 2008-09-06 18:24:57 -0500 |
---|---|---|
committer | Jacek Antonelli | 2008-09-06 18:25:07 -0500 |
commit | 798d367d54a6c6379ad355bd8345fa40e31e7fe9 (patch) | |
tree | 1921f1708cd0240648c97bc02df2c2ab5f2fc41e /linden/indra/llmessage/lliopipe.h | |
parent | Second Life viewer sources 1.20.15 (diff) | |
download | meta-impy-798d367d54a6c6379ad355bd8345fa40e31e7fe9.zip meta-impy-798d367d54a6c6379ad355bd8345fa40e31e7fe9.tar.gz meta-impy-798d367d54a6c6379ad355bd8345fa40e31e7fe9.tar.bz2 meta-impy-798d367d54a6c6379ad355bd8345fa40e31e7fe9.tar.xz |
Second Life viewer sources 1.21.0-RC
Diffstat (limited to '')
-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 | ||