Fixed the behaviour of PT_SCHEDULE() so that it returns true if a protothread is still active (yielded or waiting). Thanks to Kevin Collins for fixing.

This commit is contained in:
adamdunkels 2006-09-26 20:57:58 +00:00
parent e072e4084a
commit 6bd28132ed

View file

@ -30,7 +30,7 @@
* *
* Author: Adam Dunkels <adam@sics.se> * Author: Adam Dunkels <adam@sics.se>
* *
* $Id: pt.h,v 1.1 2006/06/17 22:41:20 adamdunkels Exp $ * $Id: pt.h,v 1.2 2006/09/26 20:57:58 adamdunkels Exp $
*/ */
/** /**
@ -56,9 +56,9 @@ struct pt {
}; };
#define PT_WAITING 0 #define PT_WAITING 0
#define PT_EXITED 1 #define PT_YIELDED 1
#define PT_ENDED 2 #define PT_EXITED 2
#define PT_YIELDED 3 #define PT_ENDED 3
/** /**
* \name Initialization * \name Initialization
@ -268,7 +268,7 @@ struct pt {
* *
* \hideinitializer * \hideinitializer
*/ */
#define PT_SCHEDULE(f) ((f) == PT_WAITING) #define PT_SCHEDULE(f) ((f) < PT_EXITED)
/** @} */ /** @} */