diff --git a/ChangeLog b/ChangeLog index 0a1e206d5f24792532fd9432d333e5781f27ffc2..573c8305418587e1bbf49cd531b2e2f7ee214f78 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1281,3 +1281,6 @@ (see email thread: http://tech.groups.yahoo.com/group/nuttx/message/530) * drivers/mtd/at45db.c - Add a driver for the Atmel AT45DB161D 4Mbit SPI FLASH part (untested on initial check-in). + * examples/ostest/prioinherit.c - Need to reinitialize globals if + test is ran repeatedly in a loop. + diff --git a/Documentation/NuttX.html b/Documentation/NuttX.html index afe46fc1931a5d16f10510f9ea3d5915b24b93ab..69a99ddc5a1a0eb6f77f48bdf94d9270b5072e3c 100644 --- a/Documentation/NuttX.html +++ b/Documentation/NuttX.html @@ -8,7 +8,7 @@ <tr align="center" bgcolor="#e4e4e4"> <td> <h1><big><font color="#3c34ec"><i>NuttX RTOS</i></font></big></h1> - <p>Last Updated: September 11, 2010</p> + <p>Last Updated: September 28, 2010</p> </td> </tr> </table> @@ -1976,6 +1976,8 @@ nuttx-5.11 2010-xx-xx Gregory Nutt <spudmonkey@racsa.co.cr> (see email thread: http://tech.groups.yahoo.com/group/nuttx/message/530) * drivers/mtd/at45db.c - Add a driver for the Atmel AT45DB161D 4Mbit SPI FLASH part (untested on initial check-in). + * examples/ostest/prioinherit.c - Need to reinitialize globals if + test is ran repeatedly in a loop. pascal-2.1 2010-xx-xx Gregory Nutt <spudmonkey@racsa.co.cr> diff --git a/examples/ostest/prioinherit.c b/examples/ostest/prioinherit.c index bcb8d61f18bc21bfbf2ee5311c8edb6cc733ee95..5d59c1297f496c1501189f4b4352e0b473ecc495 100644 --- a/examples/ostest/prioinherit.c +++ b/examples/ostest/prioinherit.c @@ -394,6 +394,10 @@ void priority_inheritance(void) printf("priority_inheritance: Started\n"); + g_middlestate = NOTSTARTED; + for (i = 0; i < NHIGHPRI_THREADS; i++) g_highstate[i] = NOTSTARTED; + for (i = 0; i < NLOWPRI_THREADS; i++) g_lowstate[i] = NOTSTARTED; + status = sched_getparam (getpid(), &sparam); if (status != 0) {