change log for rtems (2011-02-14)

rtems-vc at rtems.org rtems-vc at rtems.org
Tue Feb 15 03:10:41 UTC 2011


 *joel*:
2011-02-14	Joel Sherrill <joel.sherrill at oarcorp.com>

	* psxaio03/init.c, psxaio03/psxaio03.scn: Run in a reasonable amount of
	time. Update screen.

M  1.331  testsuites/psxtests/ChangeLog
M    1.2  testsuites/psxtests/psxaio03/init.c
M    1.2  testsuites/psxtests/psxaio03/psxaio03.scn

diff -u rtems/testsuites/psxtests/ChangeLog:1.330 rtems/testsuites/psxtests/ChangeLog:1.331
--- rtems/testsuites/psxtests/ChangeLog:1.330	Mon Feb 14 14:21:58 2011
+++ rtems/testsuites/psxtests/ChangeLog	Mon Feb 14 20:15:06 2011
@@ -1,3 +1,8 @@
+2011-02-14	Joel Sherrill <joel.sherrill at oarcorp.com>
+
+	* psxaio03/init.c, psxaio03/psxaio03.scn: Run in a reasonable amount of
+	time. Update screen.
+
 2011-02-14	Joel Sherrill <joel.sherrilL at OARcorp.com>
 
 	* psximfs02/init.c: Disable EPERM test which does not work when POSIX

diff -u rtems/testsuites/psxtests/psxaio03/init.c:1.1 rtems/testsuites/psxtests/psxaio03/init.c:1.2
--- rtems/testsuites/psxtests/psxaio03/init.c:1.1	Mon Jan 17 16:17:18 2011
+++ rtems/testsuites/psxtests/psxaio03/init.c	Mon Feb 14 20:15:06 2011
@@ -112,13 +112,12 @@
   status = aio_read (aiocbp[6]);
   rtems_test_assert (status != -1);
  
-  puts (" Init: going to sleep for 60 sec ");
-  sleep (60);
-  puts (" Init: going to sleep again for 60 sec ");
-  sleep (60);
-  puts (" Init: going to sleep again for 60 sec ");
-  sleep (60);
-  puts ("\n\n*** POSIX AIO TEST 03 ***");
+  puts (" Init: going to sleep for 5 sec ");
+  sleep (5);
+  puts (" Init: going to sleep again for 5 sec ");
+  sleep (5);
+  puts (" Init: going to sleep again for 5 sec ");
+  sleep (5);
   
   puts ("*** END OF POSIX AIO TEST 03 ***");
   

diff -u rtems/testsuites/psxtests/psxaio03/psxaio03.scn:1.1 rtems/testsuites/psxtests/psxaio03/psxaio03.scn:1.2
--- rtems/testsuites/psxtests/psxaio03/psxaio03.scn:1.1	Mon Jan 17 16:17:18 2011
+++ rtems/testsuites/psxtests/psxaio03/psxaio03.scn	Mon Feb 14 20:15:06 2011
@@ -0,0 +1,13 @@
+*** POSIX AIO TEST 03 ***
+ Init: Open files 
+ Init: [WQ] aio_write on 1st file 
+ Init: [WQ] aio_write on 2nd file 
+ Init: [WQ] aio_read on 2nd file add by priority 
+ Init: [WQ] aio_write on 3rd file 
+ Init: [WQ] aio_write on 4th file 
+ Init: [WQ] aio_write on 5th file  -- [WQ] full 
+ Init: [IQ] aio_write on 6th file 
+ Init: going to sleep for 5 sec 
+ Init: going to sleep again for 5 sec 
+ Init: going to sleep again for 5 sec 
+*** END OF POSIX AIO TEST 03 ***


 *joel*:
2011-02-14	Joel Sherrill <joel.sherrill at oarcorp.com>

	* rtems/src/semtranslatereturncode.c,
	score/include/rtems/score/coremutex.h: Returns tests to running
	state.

M 1.2712  cpukit/ChangeLog
M   1.23  cpukit/rtems/src/semtranslatereturncode.c
M   1.42  cpukit/score/include/rtems/score/coremutex.h

diff -u rtems/cpukit/ChangeLog:1.2711 rtems/cpukit/ChangeLog:1.2712
--- rtems/cpukit/ChangeLog:1.2711	Mon Feb 14 14:21:31 2011
+++ rtems/cpukit/ChangeLog	Mon Feb 14 20:31:05 2011
@@ -1,3 +1,9 @@
+2011-02-14	Joel Sherrill <joel.sherrill at oarcorp.com>
+
+	* rtems/src/semtranslatereturncode.c,
+	score/include/rtems/score/coremutex.h: Returns tests to running
+	state.
+
 2011-02-14	Joel Sherrill <joel.sherrilL at OARcorp.com>
 
 	* rtems/src/semtranslatereturncode.c, score/src/coremutexsurrender.c:

diff -u rtems/cpukit/rtems/src/semtranslatereturncode.c:1.22 rtems/cpukit/rtems/src/semtranslatereturncode.c:1.23
--- rtems/cpukit/rtems/src/semtranslatereturncode.c:1.22	Mon Feb 14 14:21:31 2011
+++ rtems/cpukit/rtems/src/semtranslatereturncode.c	Mon Feb 14 20:31:05 2011
@@ -70,7 +70,7 @@
   RTEMS_NOT_OWNER_OF_RESOURCE, /* CORE_MUTEX_STATUS_NOT_OWNER_OF_RESOURCE */
   RTEMS_OBJECT_WAS_DELETED, /* CORE_MUTEX_WAS_DELETED */
   RTEMS_TIMEOUT,            /* CORE_MUTEX_TIMEOUT */
-#if !defined(__RTEMS_STRICT_ORDER_MUTEX__)
+#if defined(__RTEMS_STRICT_ORDER_MUTEX__)
     CORE_MUTEX_RELEASE_NOT_ORDER,
 #endif
   RTEMS_INVALID_PRIORITY   /* CORE_MUTEX_STATUS_CEILING_VIOLATED */

diff -u rtems/cpukit/score/include/rtems/score/coremutex.h:1.41 rtems/cpukit/score/include/rtems/score/coremutex.h:1.42
--- rtems/cpukit/score/include/rtems/score/coremutex.h:1.41	Mon Feb 14 11:50:22 2011
+++ rtems/cpukit/score/include/rtems/score/coremutex.h	Mon Feb 14 20:31:05 2011
@@ -105,7 +105,7 @@
    */
   CORE_MUTEX_TIMEOUT,
 
-#if !defined(__RTEMS_STRICT_ORDER_MUTEX__)
+#if defined(__RTEMS_STRICT_ORDER_MUTEX__)
   /** This status indicates that a thread not release the mutex which has
    *  the priority inheritance property in a right order.
    */
@@ -197,7 +197,7 @@
 }   CORE_mutex_Attributes;
 
 #ifdef __RTEMS_STRICT_ORDER_MUTEX__
-/*@beief Core Mutex Lock_Chain Struct
+/*@brief Core Mutex Lock_Chain Struct
  *
  * The following defines the control block used to manage lock chain of
  * priority inheritance mutex.



--

Generated by Deluxe Loginfo [http://www.codewiz.org/projects/index.html#loginfo] 2.122 by Bernardo Innocenti <bernie at develer.com>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.rtems.org/pipermail/vc/attachments/20110214/bde75418/attachment-0001.html>


More information about the vc mailing list