X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=kern%2Fsem.c;h=7b3b472965999f53b13ac200af5ac1260ceed101;hb=3b33848a29f6a9ba49a2913ba6b721e01d8b95f5;hp=65c07bd17a7661df3998a8de715b8e35754d2808;hpb=af9c555446161016fdd76c1cdff96ce76bb6cba2;p=bertos.git diff --git a/kern/sem.c b/kern/sem.c index 65c07bd1..7b3b4729 100755 --- a/kern/sem.c +++ b/kern/sem.c @@ -3,7 +3,7 @@ * * * \brief Semaphore based synchronization services. @@ -15,6 +15,12 @@ /*#* *#* $Log$ + *#* Revision 1.11 2006/02/24 01:17:05 bernie + *#* Update for new emulator. + *#* + *#* Revision 1.10 2005/11/04 16:20:02 bernie + *#* Fix reference to README.devlib in header. + *#* *#* Revision 1.9 2005/04/11 19:10:28 bernie *#* Include top-level headers from cfg/ subdir. *#* @@ -44,10 +50,9 @@ *#*/ #include "sem.h" -#include "proc.h" -#include "proc_p.h" -#include "signal.h" -#include "hw.h" +#include +#include +#include #include INLINE void sem_verify(struct Semaphore *s) @@ -136,7 +141,7 @@ void sem_obtain(struct Semaphore *s) } else { - ASSERT(ISLISTEMPTY(&s->wait_queue)); + ASSERT(LIST_EMPTY(&s->wait_queue)); /* The semaphore was free: lock it */ s->owner = CurrentProcess; @@ -178,7 +183,7 @@ void sem_release(struct Semaphore *s) s->owner = NULL; /* Give semaphore to the first applicant, if any */ - if (UNLIKELY((proc = (Process *)REMHEAD(&s->wait_queue)))) + if (UNLIKELY((proc = (Process *)list_remHead(&s->wait_queue)))) { s->nest_count = 1; s->owner = proc;