Clean up the code. Manage the reconnection. Use the lwip error, insted
[bertos.git] / bertos / kern / monitor.h
index ec297b783f47be3864f1593bbaeb8cbde65363f2..a414d87b05ef2bd36ebe520ce50510799799ada8 100644 (file)
@@ -32,7 +32,6 @@
  *
  * \brief Monitor to check for stack overflows
  *
- * \version $Id$
  *
  * \author Giovanni Bajo <rasky@develer.com>
  *
@@ -48,8 +47,6 @@
 
 #include <cpu/types.h>
 
-#if CONFIG_KERN_MONITOR
-
 /**
  * Start the kernel monitor. It is a special process which checks every second the stacks of the
  * running processes trying to detect stack overflows.
@@ -77,6 +74,4 @@ size_t monitor_checkStack(cpu_stack_t *stack_base, size_t stack_size);
 /** Print a report of the stack status through kdebug */
 void monitor_report(void);
 
-
-#endif /* CONFIG_KERN_MONITOR */
 #endif /* KERN_MONITOR_H */