X-Git-Url: http://www.aleph1.co.uk/gitweb/?p=yaffs2.git;a=blobdiff_plain;f=yportenv.h;h=13cc1eb621783ebbfd7c860509593194dbf97d25;hp=7a8397f0f0683a71f5678265b05d6807971ea20c;hb=35251e467a7817c6b991d88797891b4b1c191d5f;hpb=0333f489a25b05a4c0176258204eee1db9e8c9e0 diff --git a/yportenv.h b/yportenv.h index 7a8397f..13cc1eb 100644 --- a/yportenv.h +++ b/yportenv.h @@ -71,8 +71,8 @@ #define YFREE_ALT(x) vfree(x) #define YMALLOC_DMA(x) YMALLOC(x) -/* KR - added for use in scan so processes aren't blocked indefinitely. */ #define YYIELD() schedule() +#define Y_DUMP_STACK() dump_stack() #define YAFFS_ROOT_MODE 0755 #define YAFFS_LOSTNFOUND_MODE 0700 @@ -153,9 +153,17 @@ #endif +#ifndef Y_DUMP_STACK +#define Y_DUMP_STACK() do { } while (0) +#endif #ifndef YBUG -#define YBUG() do {T(YAFFS_TRACE_BUG, (TSTR("==>> yaffs bug: " __FILE__ " %d" TENDSTR), __LINE__)); } while (0) +#define YBUG() do {\ + T(YAFFS_TRACE_BUG,\ + (TSTR("==>> yaffs bug: " __FILE__ " %d" TENDSTR),\ + __LINE__));\ + Y_DUMP_STACK();\ +} while (0) #endif #endif