From d5be11334fee1c9b56afa39db928d4f7d32714fb Mon Sep 17 00:00:00 2001 From: jani Date: Fri, 21 Feb 2003 16:35:23 +0000 Subject: [PATCH] SYS_ARCH_PROTECT_XXX macros noops for now to get it to compile.I don't know whether anything is required here --- ports/unix/include/arch/cc.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/ports/unix/include/arch/cc.h b/ports/unix/include/arch/cc.h index f44c1b3..96205e7 100644 --- a/ports/unix/include/arch/cc.h +++ b/ports/unix/include/arch/cc.h @@ -64,4 +64,9 @@ typedef u32_t mem_ptr_t; #define LWIP_PLATFORM_ASSERT(x) do {printf("Assertion \"%s\" failed at line %d in %s\n", \ x, __LINE__, __FILE__); fflush(NULL); abort();} while(0) + +#define SYS_ARCH_DECL_PROTECT(x) +#define SYS_ARCH_PROTECT(x) +#define SYS_ARCH_UNPROTECT(x) + #endif /* __ARCH_CC_H__ */