change log for rtems (2011-12-13)

Joel Sherrill joel.sherrill at OARcorp.com
Tue Dec 13 12:36:05 UTC 2011


These are based on a test template in the rtems-testing cvs module. Please fix the test template as well or these will show up again.

--joel

"rtems-vc at rtems.org" <rtems-vc at rtems.org> wrote:

>ralf
>
>2011-12-13      Ralf Corsépius <ralf.corsepius at rtems.org>
>
>        * psxtmbarrier01/init.c: Make benchmark_pthread_barrier_init,
>        benchmark_pthread_barrier_destroy static.
>        * psxtmkey01/init.c: Make benchmark_pthread_key_create,
>        benchmark_pthread_key_delete static.
>        * psxtmrwlock01/init.c: Make benchmark_pthread_rwlock_init,
>        benchmark_pthread_rwlock_rdlock, benchmark_pthread_rwlock_unlock,
>        benchmark_pthread_rwlock_tryrdlock,
>        benchmark_pthread_rwlock_timedrdlock,
>        benchmark_pthread_rwlock_wrlock,
>        benchmark_pthread_rwlock_trywrlock,
>        benchmark_pthread_rwlock_timedwrlock,
>        benchmark_pthread_rwlock_destroy static.
>        * psxtmsem01/init.c: Make benchmark_sem_init,
>        benchmark_sem_destroy, benchmark_sem_open, benchmark_sem_close,
>        benchmark_sem_unlink, benchmark_sem_open_second,
>        benchmark_sem_close_second static.
>        * psxtmthread01/init.c: Make benchmark_pthread_create static.
>
>
>
>M<http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/testsuites/psxtmtests/ChangeLog.diff?r1=text&tr1=1.52&r2=text&tr2=1.53&diff_format=h> 1.53    testsuites/psxtmtests/ChangeLog
>M<http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/testsuites/psxtmtests/psxtmbarrier01/init.c.diff?r1=text&tr1=1.2&r2=text&tr2=1.3&diff_format=h>       1.3     testsuites/psxtmtests/psxtmbarrier01/init.c
>M<http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/testsuites/psxtmtests/psxtmkey01/init.c.diff?r1=text&tr1=1.2&r2=text&tr2=1.3&diff_format=h>   1.3     testsuites/psxtmtests/psxtmkey01/init.c
>M<http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/testsuites/psxtmtests/psxtmrwlock01/init.c.diff?r1=text&tr1=1.3&r2=text&tr2=1.4&diff_format=h>        1.4     testsuites/psxtmtests/psxtmrwlock01/init.c
>M<http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/testsuites/psxtmtests/psxtmsem01/init.c.diff?r1=text&tr1=1.2&r2=text&tr2=1.3&diff_format=h>   1.3     testsuites/psxtmtests/psxtmsem01/init.c
>M<http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/testsuites/psxtmtests/psxtmthread01/init.c.diff?r1=text&tr1=1.3&r2=text&tr2=1.4&diff_format=h>        1.4     testsuites/psxtmtests/psxtmthread01/init.c
>
>
>diff -u rtems/testsuites/psxtmtests/ChangeLog:1.52 rtems/testsuites/psxtmtests/ChangeLog:1.53
>--- rtems/testsuites/psxtmtests/ChangeLog:1.52  Thu Dec  8 15:38:25 2011
>+++ rtems/testsuites/psxtmtests/ChangeLog       Tue Dec 13 04:13:24 2011
>@@ -1,3 +1,23 @@
>+2011-12-13     Ralf Corsépius <ralf.corsepius at rtems.org>
>+
>+       * psxtmbarrier01/init.c: Make benchmark_pthread_barrier_init,
>+       benchmark_pthread_barrier_destroy static.
>+       * psxtmkey01/init.c: Make benchmark_pthread_key_create,
>+       benchmark_pthread_key_delete static.
>+       * psxtmrwlock01/init.c: Make benchmark_pthread_rwlock_init,
>+       benchmark_pthread_rwlock_rdlock, benchmark_pthread_rwlock_unlock,
>+       benchmark_pthread_rwlock_tryrdlock,
>+       benchmark_pthread_rwlock_timedrdlock,
>+       benchmark_pthread_rwlock_wrlock,
>+       benchmark_pthread_rwlock_trywrlock,
>+       benchmark_pthread_rwlock_timedwrlock,
>+       benchmark_pthread_rwlock_destroy static.
>+       * psxtmsem01/init.c: Make benchmark_sem_init,
>+       benchmark_sem_destroy, benchmark_sem_open, benchmark_sem_close,
>+       benchmark_sem_unlink, benchmark_sem_open_second,
>+       benchmark_sem_close_second static.
>+       * psxtmthread01/init.c: Make benchmark_pthread_create static.
>+
> 2011-12-08     Joel Sherrill <joel.sherrill at oarcorp.com>
>
>        PR 1589/build
>
>diff -u rtems/testsuites/psxtmtests/psxtmbarrier01/init.c:1.2 rtems/testsuites/psxtmtests/psxtmbarrier01/init.c:1.3
>--- rtems/testsuites/psxtmtests/psxtmbarrier01/init.c:1.2       Wed Oct 19 10:27:26 2011
>+++ rtems/testsuites/psxtmtests/psxtmbarrier01/init.c   Tue Dec 13 04:13:24 2011
>@@ -20,7 +20,7 @@
>
> pthread_barrier_t   barrier;
>
>-void benchmark_pthread_barrier_init(void)
>+static void benchmark_pthread_barrier_init(void)
> {
>   benchmark_timer_t end_time;
>   int                   status;
>@@ -46,7 +46,7 @@
>   );
> }
>
>-void benchmark_pthread_barrier_destroy(void)
>+static void benchmark_pthread_barrier_destroy(void)
> {
>   benchmark_timer_t end_time;
>   int  status;
>
>diff -u rtems/testsuites/psxtmtests/psxtmkey01/init.c:1.2 rtems/testsuites/psxtmtests/psxtmkey01/init.c:1.3
>--- rtems/testsuites/psxtmtests/psxtmkey01/init.c:1.2   Wed Oct 19 10:27:26 2011
>+++ rtems/testsuites/psxtmtests/psxtmkey01/init.c       Tue Dec 13 04:13:24 2011
>@@ -21,7 +21,7 @@
>
> pthread_key_t Key;
>
>-void benchmark_pthread_key_create(void)
>+static void benchmark_pthread_key_create(void)
> {
>   benchmark_timer_t end_time;
>   int  status;
>@@ -41,7 +41,7 @@
>
> }
>
>-void benchmark_pthread_key_delete(void)
>+static void benchmark_pthread_key_delete(void)
> {
>   benchmark_timer_t end_time;
>   int  status;
>
>diff -u rtems/testsuites/psxtmtests/psxtmrwlock01/init.c:1.3 rtems/testsuites/psxtmtests/psxtmrwlock01/init.c:1.4
>--- rtems/testsuites/psxtmtests/psxtmrwlock01/init.c:1.3        Wed Oct 19 10:27:27 2011
>+++ rtems/testsuites/psxtmtests/psxtmrwlock01/init.c    Tue Dec 13 04:13:24 2011
>@@ -20,7 +20,7 @@
>
> pthread_rwlock_t     rwlock;
>
>-void benchmark_pthread_rwlock_init(void)
>+static void benchmark_pthread_rwlock_init(void)
> {
>   benchmark_timer_t end_time;
>   int  status;
>@@ -42,7 +42,7 @@
>
> }
>
>-void benchmark_pthread_rwlock_rdlock(void)
>+static void benchmark_pthread_rwlock_rdlock(void)
> {
>   benchmark_timer_t end_time;
>   int  status;
>@@ -62,7 +62,7 @@
>
> }
>
>-void benchmark_pthread_rwlock_unlock(int print)
>+static void benchmark_pthread_rwlock_unlock(int print)
> {
>   benchmark_timer_t end_time;
>   int  status;
>@@ -82,7 +82,7 @@
>   }
> }
>
>-void benchmark_pthread_rwlock_tryrdlock(void)
>+static void benchmark_pthread_rwlock_tryrdlock(void)
> {
>   benchmark_timer_t end_time;
>   int  status;
>@@ -110,7 +110,7 @@
>   }
> }
>
>-void benchmark_pthread_rwlock_timedrdlock(void)
>+static void benchmark_pthread_rwlock_timedrdlock(void)
> {
>   benchmark_timer_t end_time;
>   int  status;
>@@ -130,7 +130,7 @@
>
> }
>
>-void benchmark_pthread_rwlock_wrlock(void)
>+static void benchmark_pthread_rwlock_wrlock(void)
> {
>   benchmark_timer_t end_time;
>   int  status;
>@@ -150,7 +150,7 @@
>
> }
>
>-void benchmark_pthread_rwlock_trywrlock(void)
>+static void benchmark_pthread_rwlock_trywrlock(void)
> {
>   benchmark_timer_t end_time;
>   int  status;
>@@ -179,7 +179,7 @@
>   }
> }
>
>-void benchmark_pthread_rwlock_timedwrlock(void)
>+static void benchmark_pthread_rwlock_timedwrlock(void)
> {
>   benchmark_timer_t end_time;
>   int  status;
>@@ -198,7 +198,7 @@
>   );
> }
>
>-void benchmark_pthread_rwlock_destroy(void)
>+static void benchmark_pthread_rwlock_destroy(void)
> {
>   benchmark_timer_t end_time;
>   int  status;
>
>diff -u rtems/testsuites/psxtmtests/psxtmsem01/init.c:1.2 rtems/testsuites/psxtmtests/psxtmsem01/init.c:1.3
>--- rtems/testsuites/psxtmtests/psxtmsem01/init.c:1.2   Wed Oct 19 10:27:27 2011
>+++ rtems/testsuites/psxtmtests/psxtmsem01/init.c       Tue Dec 13 04:13:24 2011
>@@ -27,7 +27,7 @@
> sem_t           *n_sem1;
> sem_t           *n_sem2;
>
>-void benchmark_sem_init(void)
>+static void benchmark_sem_init(void)
> {
>   benchmark_timer_t end_time;
>   int  status;
>@@ -46,7 +46,7 @@
>   );
> }
>
>-void benchmark_sem_destroy(void)
>+static void benchmark_sem_destroy(void)
> {
>   benchmark_timer_t end_time;
>   int  status;
>@@ -65,7 +65,7 @@
>   );
> }
>
>-void benchmark_sem_open(bool report_time)
>+static void benchmark_sem_open(bool report_time)
> {
>   benchmark_timer_t end_time;
>
>@@ -84,7 +84,7 @@
>   }
> }
>
>-void benchmark_sem_close(bool report_time)
>+static void benchmark_sem_close(bool report_time)
> {
>   benchmark_timer_t end_time;
>   int  status;
>@@ -105,7 +105,7 @@
>   }
> }
>
>-void benchmark_sem_unlink(const char *message)
>+static void benchmark_sem_unlink(const char *message)
> {
>   benchmark_timer_t end_time;
>   int  status;
>@@ -124,7 +124,7 @@
>   );
> }
>
>-void benchmark_sem_open_second(void)
>+static void benchmark_sem_open_second(void)
> {
>   benchmark_timer_t end_time;
>
>@@ -141,7 +141,7 @@
>   );
> }
>
>-void benchmark_sem_close_second(void)
>+static void benchmark_sem_close_second(void)
> {
>   benchmark_timer_t end_time;
>   int  status;
>
>diff -u rtems/testsuites/psxtmtests/psxtmthread01/init.c:1.3 rtems/testsuites/psxtmtests/psxtmthread01/init.c:1.4
>--- rtems/testsuites/psxtmtests/psxtmthread01/init.c:1.3        Thu Jul 21 08:46:49 2011
>+++ rtems/testsuites/psxtmtests/psxtmthread01/init.c    Tue Dec 13 04:13:24 2011
>@@ -30,7 +30,7 @@
> }
>
>
>-void benchmark_pthread_create(
>+static void benchmark_pthread_create(
>   int    iteration,
>   void  *argument
> )
>
>
>
>
>--
>Generated by Deluxe Loginfo<http://www.codewiz.org/projects/index.html#loginfo> 2.122 by Bernardo Innocenti <bernie at develer.com>




More information about the devel mailing list