When building the block cache for UserlandFS's haiku emulation lib, don't include tracing since that's unavailable outside of the kernel. Fixes ticket #4092. Axel or Ingo, please review.
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@31525 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
parent
50ffb0b27e
commit
008ec58d9f
4
src/system/kernel/cache/block_cache.cpp
vendored
4
src/system/kernel/cache/block_cache.cpp
vendored
@ -164,7 +164,7 @@ struct cache_transaction {
|
||||
bigtime_t last_used;
|
||||
};
|
||||
|
||||
#if BLOCK_CACHE_BLOCK_TRACING
|
||||
#if BLOCK_CACHE_BLOCK_TRACING && !defined(BUILDING_USERLAND_FS_SERVER)
|
||||
namespace BlockTracing {
|
||||
|
||||
class Action : public AbstractTraceEntry {
|
||||
@ -415,7 +415,7 @@ private:
|
||||
#endif
|
||||
|
||||
|
||||
#if BLOCK_CACHE_TRANSACTION_TRACING
|
||||
#if BLOCK_CACHE_TRANSACTION_TRACING && !defined(BUILDING_USERLAND_FS_SERVER)
|
||||
namespace TransactionTracing {
|
||||
|
||||
class Action : public AbstractTraceEntry {
|
||||
|
Loading…
Reference in New Issue
Block a user