#if 0:ed out unused code

This commit is contained in:
adamdunkels 2006-09-01 22:56:47 +00:00
parent 80a7d1fba2
commit ea13dd9179
2 changed files with 6 additions and 2 deletions

View File

@ -30,7 +30,7 @@
* *
* Author: Adam Dunkels <adam@sics.se> * Author: Adam Dunkels <adam@sics.se>
* *
* $Id: mt.c,v 1.1 2006/06/17 22:41:20 adamdunkels Exp $ * $Id: mt.c,v 1.2 2006/09/01 22:56:47 adamdunkels Exp $
*/ */
/** /**
@ -166,6 +166,7 @@ mt_peek(process_event_t *ev, process_data_t *data)
mtarch_yield(); mtarch_yield();
} }
/*--------------------------------------------------------------------------*/ /*--------------------------------------------------------------------------*/
#if 0
void void
mtp_start(struct mt_process *t, mtp_start(struct mt_process *t,
void (* function)(void *), void *data) void (* function)(void *), void *data)
@ -219,3 +220,4 @@ mtp_eventhandler(ek_event_t ev, ek_data_t data)
} }
}*/ }*/
/*--------------------------------------------------------------------------*/ /*--------------------------------------------------------------------------*/
#endif /* 0 */

View File

@ -30,7 +30,7 @@
* *
* Author: Adam Dunkels <adam@sics.se> * Author: Adam Dunkels <adam@sics.se>
* *
* $Id: mt.h,v 1.1 2006/06/17 22:41:20 adamdunkels Exp $ * $Id: mt.h,v 1.2 2006/09/01 22:56:47 adamdunkels Exp $
*/ */
/** \addtogroup sys /** \addtogroup sys
@ -292,6 +292,7 @@ void mt_wait(process_event_t *ev, process_data_t *data);
*/ */
void mt_exit(void); void mt_exit(void);
#if 0
/** /**
* \defgroup mtp Multi-threading library convenience functions * \defgroup mtp Multi-threading library convenience functions
* @{ * @{
@ -361,6 +362,7 @@ void mtp_exit(void);
void mtp_eventhandler(process_event_t ev, process_data_t data); void mtp_eventhandler(process_event_t ev, process_data_t data);
/** @} */ /** @} */
#endif /* 0 */
/** @} */ /** @} */
/** @} */ /** @} */
#endif /* __MT_H__ */ #endif /* __MT_H__ */