change log for rtems (2011-07-21)

rtems-vc at rtems.org rtems-vc at rtems.org
Thu Jul 21 14:11:18 UTC 2011


 *joel*:
2011-07-21	Joel Sherrill <joel.sherrill at oarcorp.com>

	* libfs/src/dosfs/fat_file.c, libmisc/monitor/monitor.h,
	score/cpu/m68k/rtems/score/cpu.h: Remove stray spaces from unsigned32
	to uint32_t conversion.

M 1.2885  cpukit/ChangeLog
M   1.19  cpukit/libfs/src/dosfs/fat_file.c
M   1.43  cpukit/libmisc/monitor/monitor.h
M   1.46  cpukit/score/cpu/m68k/rtems/score/cpu.h

diff -u rtems/cpukit/ChangeLog:1.2884 rtems/cpukit/ChangeLog:1.2885
--- rtems/cpukit/ChangeLog:1.2884	Thu Jul 21 07:03:25 2011
+++ rtems/cpukit/ChangeLog	Thu Jul 21 08:18:30 2011
@@ -1,3 +1,9 @@
+2011-07-21	Joel Sherrill <joel.sherrill at oarcorp.com>
+
+	* libfs/src/dosfs/fat_file.c, libmisc/monitor/monitor.h,
+	score/cpu/m68k/rtems/score/cpu.h: Remove stray spaces from unsigned32
+	to uint32_t conversion.
+
 2011-07-21	Sebastian Huber <sebastian.huber at embedded-brains.de>
 
 	* libcsupport/include/rtems/libio_.h: Added

diff -u rtems/cpukit/libfs/src/dosfs/fat_file.c:1.18 rtems/cpukit/libfs/src/dosfs/fat_file.c:1.19
--- rtems/cpukit/libfs/src/dosfs/fat_file.c:1.18	Thu Nov 25 03:27:05 2010
+++ rtems/cpukit/libfs/src/dosfs/fat_file.c	Thu Jul 21 08:18:30 2011
@@ -687,8 +687,8 @@
     switch (cmd)
     {
         case F_CLU_NUM:
-            pos = va_arg(ap, uint32_t  );
-            ret = va_arg(ap, uint32_t   *);
+            pos = va_arg(ap, uint32_t);
+            ret = va_arg(ap, uint32_t *);
 
             /* sanity check */
             if ( pos >= fat_fd->fat_file_size ) {

diff -u rtems/cpukit/libmisc/monitor/monitor.h:1.42 rtems/cpukit/libmisc/monitor/monitor.h:1.43
--- rtems/cpukit/libmisc/monitor/monitor.h:1.42	Mon Apr 12 10:23:41 2010
+++ rtems/cpukit/libmisc/monitor/monitor.h	Thu Jul 21 08:18:30 2011
@@ -392,7 +392,7 @@
 void    rtems_monitor_server_kill(void);
 rtems_status_code rtems_monitor_server_request(uint32_t  , rtems_monitor_server_request_t *, rtems_monitor_server_response_t *);
 void    rtems_monitor_server_task(rtems_task_argument);
-void    rtems_monitor_server_init(uint32_t  );
+void    rtems_monitor_server_init(uint32_t);
 
 /* command.c */
 int     rtems_monitor_make_argv(char *, int *, char **);
@@ -488,9 +488,9 @@
 rtems_symbol_table_t *rtems_symbol_table_create(void);
 void                  rtems_symbol_table_destroy(rtems_symbol_table_t *table);
 
-rtems_symbol_t *rtems_symbol_create(rtems_symbol_table_t *, const char *, uint32_t  );
-rtems_symbol_t *rtems_symbol_value_lookup(rtems_symbol_table_t *, uint32_t  );
-const rtems_symbol_t *rtems_symbol_value_lookup_exact(rtems_symbol_table_t *, uint32_t  );
+rtems_symbol_t *rtems_symbol_create(rtems_symbol_table_t *, const char *, uint32_t);
+rtems_symbol_t *rtems_symbol_value_lookup(rtems_symbol_table_t *, uint32_t);
+const rtems_symbol_t *rtems_symbol_value_lookup_exact(rtems_symbol_table_t *, uint32_t);
 rtems_symbol_t *rtems_symbol_name_lookup(rtems_symbol_table_t *, const char *);
 void   *rtems_monitor_symbol_next(void *object_info, rtems_monitor_symbol_t *, rtems_id *);
 void    rtems_monitor_symbol_canonical(rtems_monitor_symbol_t *, rtems_symbol_t *);

diff -u rtems/cpukit/score/cpu/m68k/rtems/score/cpu.h:1.45 rtems/cpukit/score/cpu/m68k/rtems/score/cpu.h:1.46
--- rtems/cpukit/score/cpu/m68k/rtems/score/cpu.h:1.45	Fri Feb 11 03:22:30 2011
+++ rtems/cpukit/score/cpu/m68k/rtems/score/cpu.h	Thu Jul 21 08:18:30 2011
@@ -6,7 +6,7 @@
  *  This include file contains information pertaining to the Motorola
  *  m68xxx processor family.
  *
- *  COPYRIGHT (c) 1989-2006.
+ *  COPYRIGHT (c) 1989-2011.
  *  On-Line Applications Research Corporation (OAR).
  *
  *  The license and distribution terms for this file may be
@@ -457,7 +457,7 @@
      uint32_t   _stack;                                                 \
                                                                         \
      (_the_context)->sr      = 0x3000 | ((_isr) << 8);                  \
-     _stack                  = (uint32_t  )(_stack_base) + (_size) - 4; \
+     _stack                  = (uint32_t)(_stack_base) + (_size) - 4;   \
      (_the_context)->a7_msp  = (void *)_stack;                          \
      *(void **)_stack        = (void *)(_entry_point);                  \
    } while ( 0 )


 *joel*:
2011-07-21	Joel Sherrill <joel.sherrill at oarcorp.com>

	* psxtmmutex02/init.c, psxtmmutex05/init.c, psxtmmutex06/init.c,
	psxtmnanosleep02/init.c, psxtmsleep02/init.c, psxtmthread01/init.c,
	psxtmthread03/init.c: Standardize start and end test messages.

M   1.26  testsuites/psxtmtests/ChangeLog
M    1.4  testsuites/psxtmtests/psxtmmutex02/init.c
M    1.3  testsuites/psxtmtests/psxtmmutex05/init.c
M    1.2  testsuites/psxtmtests/psxtmmutex06/init.c
M    1.2  testsuites/psxtmtests/psxtmnanosleep02/init.c
M    1.2  testsuites/psxtmtests/psxtmsleep02/init.c
M    1.3  testsuites/psxtmtests/psxtmthread01/init.c
M    1.4  testsuites/psxtmtests/psxtmthread03/init.c

diff -u rtems/testsuites/psxtmtests/ChangeLog:1.25 rtems/testsuites/psxtmtests/ChangeLog:1.26
--- rtems/testsuites/psxtmtests/ChangeLog:1.25	Wed Jul 20 16:39:25 2011
+++ rtems/testsuites/psxtmtests/ChangeLog	Thu Jul 21 08:46:49 2011
@@ -1,3 +1,9 @@
+2011-07-21	Joel Sherrill <joel.sherrill at oarcorp.com>
+
+	* psxtmmutex02/init.c, psxtmmutex05/init.c, psxtmmutex06/init.c,
+	psxtmnanosleep02/init.c, psxtmsleep02/init.c, psxtmthread01/init.c,
+	psxtmthread03/init.c: Standardize start and end test messages.
+
 2011-07-20	Joel Sherrill <joel.sherrill at oarcorp.com>
 
 	* Makefile.am, configure.ac, psxtmtests_plan.csv: Add benchmark of

diff -u rtems/testsuites/psxtmtests/psxtmmutex02/init.c:1.3 rtems/testsuites/psxtmtests/psxtmmutex02/init.c:1.4
--- rtems/testsuites/psxtmtests/psxtmmutex02/init.c:1.3	Tue Feb 22 04:58:44 2011
+++ rtems/testsuites/psxtmtests/psxtmmutex02/init.c	Thu Jul 21 08:46:49 2011
@@ -40,14 +40,14 @@
   end_time = benchmark_timer_read();
 
   put_time(
-    "pthread_mutex_lock (unavailable)",
+    "pthread_mutex_lock - unavailable, block",
     end_time,
     OPERATION_COUNT,
     0,
     0
   );
 
-  puts( "*** END OF POSIX TIME TEST MUTEX 02 ***" );
+  puts( "*** END OF POSIX TIME TEST PSXTMMUTEX02 ***" );
 
   rtems_test_exit( 0 );
   return NULL;
@@ -81,7 +81,7 @@
   int        status;
   pthread_t  threadId;
 
-  puts( "\n\n*** POSIX TIME TEST MUTEX 02 ***" );
+  puts( "\n\n*** POSIX TIME TEST PSXTMMUTEX02 ***" );
 
   for ( i=0 ; i < OPERATION_COUNT - 1 ; i++ ) {
     status = pthread_create( &threadId, NULL, Middle, NULL );

diff -u rtems/testsuites/psxtmtests/psxtmmutex05/init.c:1.2 rtems/testsuites/psxtmtests/psxtmmutex05/init.c:1.3
--- rtems/testsuites/psxtmtests/psxtmmutex05/init.c:1.2	Wed Jul 20 16:30:02 2011
+++ rtems/testsuites/psxtmtests/psxtmmutex05/init.c	Thu Jul 21 08:46:49 2011
@@ -42,7 +42,7 @@
   pthread_t  threadId;
   long       end_time;
 
-  puts( "\n\n*** POSIX TIME TEST MUTEX 05 ***" );
+  puts( "\n\n*** POSIX TIME TEST PSXTMMUTEX05 ***" );
 
   status = pthread_create( &threadId, NULL, Blocker, NULL );
   rtems_test_assert( status == 0 );
@@ -73,14 +73,14 @@
   rtems_test_assert( status == 0 );
 
   put_time(
-    "pthread_mutex_unlock (no preemption)",
+    "pthread_mutex_unlock - unblocking, no preemption",
     end_time,
     1,
     0,
     0
   );
 
-  puts( "*** END OF POSIX TIME TEST MUTEX 05 ***" );
+  puts( "*** END OF POSIX TIME TEST PSXTMMUTEX05 ***" );
   rtems_test_exit( 0 );
 
   return NULL;

diff -u rtems/testsuites/psxtmtests/psxtmmutex06/init.c:1.1 rtems/testsuites/psxtmtests/psxtmmutex06/init.c:1.2
--- rtems/testsuites/psxtmtests/psxtmmutex06/init.c:1.1	Wed Jul 20 16:39:25 2011
+++ rtems/testsuites/psxtmtests/psxtmmutex06/init.c	Thu Jul 21 08:46:49 2011
@@ -36,14 +36,14 @@
   rtems_test_assert( status == 0 );
 
   put_time(
-    "pthread_mutex_unlock (unblocking, prempt)",
+    "pthread_mutex_unlock - unblocking, preempt",
     end_time,
     OPERATION_COUNT,
     0,
     0
   );
 
-  puts( "*** END OF POSIX TIME TEST MUTEX 07 ***" );
+  puts( "*** END OF POSIX TIME TEST PSXTMMUTEX07 ***" );
   rtems_test_exit( 0 );
   return NULL;
 }
@@ -77,7 +77,7 @@
   pthread_attr_t      attr;
   struct sched_param  param;
 
-  puts( "\n\n*** POSIX TIME TEST MUTEX 02 ***" );
+  puts( "\n\n*** POSIX TIME TEST PSXTMMUTEX02 ***" );
 
   /*
    * Deliberately create the mutex BEFORE the threads.  This way the

diff -u rtems/testsuites/psxtmtests/psxtmnanosleep02/init.c:1.1 rtems/testsuites/psxtmtests/psxtmnanosleep02/init.c:1.2
--- rtems/testsuites/psxtmtests/psxtmnanosleep02/init.c:1.1	Wed Jun 29 14:09:12 2011
+++ rtems/testsuites/psxtmtests/psxtmnanosleep02/init.c	Thu Jul 21 08:46:49 2011
@@ -35,7 +35,7 @@
     0
   );
 
-  puts( "*** END OF POSIX TIME TEST nanosleep - blocking ***" );
+  puts( "*** END OF POSIX TIME TEST PSXTMNANOSLEEP02 ***" );
 
   rtems_test_exit( 0 );
   return NULL;
@@ -70,7 +70,7 @@
   remainder.tv_sec = 0;
   remainder.tv_nsec = 0;
 
-  puts( "\n\n*** POSIX TIME TEST nanosleep - blocking ***" );
+  puts( "\n\n*** POSIX TIME TEST PSXTMNANOSLEEP02 ***" );
 
   for ( i=0 ; i < OPERATION_COUNT - 1 ; i++ ) {
     status = pthread_create( &threadId, NULL, Middle, NULL );

diff -u rtems/testsuites/psxtmtests/psxtmsleep02/init.c:1.1 rtems/testsuites/psxtmtests/psxtmsleep02/init.c:1.2
--- rtems/testsuites/psxtmtests/psxtmsleep02/init.c:1.1	Wed Jun 22 15:53:33 2011
+++ rtems/testsuites/psxtmtests/psxtmsleep02/init.c	Thu Jul 21 08:46:49 2011
@@ -35,7 +35,7 @@
     0
   );
 
-  puts( "*** END OF POSIX TIME TEST sleep - blocking ***" );
+  puts( "*** END OF POSIX TIME TEST PSXTMSLEEP02 ***" );
 
   rtems_test_exit( 0 );
   return NULL;
@@ -57,7 +57,7 @@
   int        status;
   pthread_t  threadId;
 
-  puts( "\n\n*** POSIX TIME TEST sleep - blocking ***" );
+  puts( "\n\n*** POSIX TIME TEST PSXTMSLEEP02 ***" );
 
   for ( i=0 ; i < OPERATION_COUNT - 1 ; i++ ) {
     status = pthread_create( &threadId, NULL, Middle, NULL );

diff -u rtems/testsuites/psxtmtests/psxtmthread01/init.c:1.2 rtems/testsuites/psxtmtests/psxtmthread01/init.c:1.3
--- rtems/testsuites/psxtmtests/psxtmthread01/init.c:1.2	Tue Feb 22 04:58:44 2011
+++ rtems/testsuites/psxtmtests/psxtmthread01/init.c	Thu Jul 21 08:46:49 2011
@@ -45,7 +45,7 @@
   void *argument
 )
 {
-  puts( "\n\n*** POSIX TIME TEST THREAD 01 ***" );
+  puts( "\n\n*** POSIX TIME TEST PSXTMTHREAD01 ***" );
 
   rtems_time_test_measure_operation(
     "pthread_create",
@@ -56,7 +56,7 @@
   );
 
   
-  puts( "*** END OF POSIX TIME TEST THREAD 01 ***" );
+  puts( "*** END OF POSIX TIME TEST PSXTMTHREAD01 ***" );
 
   rtems_test_exit(0);
 }

diff -u rtems/testsuites/psxtmtests/psxtmthread03/init.c:1.3 rtems/testsuites/psxtmtests/psxtmthread03/init.c:1.4
--- rtems/testsuites/psxtmtests/psxtmthread03/init.c:1.3	Tue Feb 22 04:58:44 2011
+++ rtems/testsuites/psxtmtests/psxtmthread03/init.c	Thu Jul 21 08:46:49 2011
@@ -45,7 +45,7 @@
     0
   );
 
-  puts( "*** END OF POSIX TIME TEST TM02 ***" );
+  puts( "*** END OF POSIX TIME TEST PSXTMTHREAD03 ***" );
   rtems_test_exit( 0 );
   return NULL;
 }
@@ -74,7 +74,7 @@
   int        status;
   pthread_t  threadId;
 
-  puts( "\n\n*** POSIX TIME TEST TM02 ***" );
+  puts( "\n\n*** POSIX TIME TEST PSXTMTHREAD03 ***" );
 
   for ( i=0 ; i < OPERATION_COUNT - 1 ; i++ ) {
     status = pthread_create( &threadId, NULL, Middle, NULL );


 *joel*:
2011-07-21	Ricardo Aguirre <el.mastin at ymail.com>

	PR 1835/tests
	* Makefile.am, configure.ac: Add benchmark of pthread_mutex_timedlock -
	not available, block.
	* psxtmmutex04/.cvsignore, psxtmmutex04/Makefile.am,
	psxtmmutex04/init.c, psxtmmutex04/psxtmmutex04.doc: New files.

M   1.27  testsuites/psxtmtests/ChangeLog
M   1.12  testsuites/psxtmtests/Makefile.am
M   1.15  testsuites/psxtmtests/configure.ac
A    1.1  testsuites/psxtmtests/psxtmmutex04/.cvsignore
A    1.1  testsuites/psxtmtests/psxtmmutex04/Makefile.am
A    1.1  testsuites/psxtmtests/psxtmmutex04/init.c
A    1.1  testsuites/psxtmtests/psxtmmutex04/psxtmmutex04.doc

diff -u rtems/testsuites/psxtmtests/ChangeLog:1.26 rtems/testsuites/psxtmtests/ChangeLog:1.27
--- rtems/testsuites/psxtmtests/ChangeLog:1.26	Thu Jul 21 08:46:49 2011
+++ rtems/testsuites/psxtmtests/ChangeLog	Thu Jul 21 08:48:52 2011
@@ -1,3 +1,11 @@
+2011-07-21	Ricardo Aguirre <el.mastin at ymail.com>
+
+	PR 1835/tests
+	* Makefile.am, configure.ac: Add benchmark of pthread_mutex_timedlock -
+	not available, block.
+	* psxtmmutex04/.cvsignore, psxtmmutex04/Makefile.am,
+	psxtmmutex04/init.c, psxtmmutex04/psxtmmutex04.doc: New files.
+
 2011-07-21	Joel Sherrill <joel.sherrill at oarcorp.com>
 
 	* psxtmmutex02/init.c, psxtmmutex05/init.c, psxtmmutex06/init.c,

diff -u rtems/testsuites/psxtmtests/Makefile.am:1.11 rtems/testsuites/psxtmtests/Makefile.am:1.12
--- rtems/testsuites/psxtmtests/Makefile.am:1.11	Wed Jul 20 16:39:25 2011
+++ rtems/testsuites/psxtmtests/Makefile.am	Thu Jul 21 08:48:52 2011
@@ -12,6 +12,7 @@
 SUBDIRS += psxtmmutex01
 SUBDIRS += psxtmmutex02
 SUBDIRS += psxtmmutex03
+SUBDIRS += psxtmmutex04
 SUBDIRS += psxtmmutex05
 SUBDIRS += psxtmmutex06
 SUBDIRS += psxtmmutex07

diff -u rtems/testsuites/psxtmtests/configure.ac:1.14 rtems/testsuites/psxtmtests/configure.ac:1.15
--- rtems/testsuites/psxtmtests/configure.ac:1.14	Wed Jul 20 16:39:25 2011
+++ rtems/testsuites/psxtmtests/configure.ac	Thu Jul 21 08:48:52 2011
@@ -84,6 +84,7 @@
 psxtmmutex01/Makefile
 psxtmmutex02/Makefile
 psxtmmutex03/Makefile
+psxtmmutex04/Makefile
 psxtmmutex05/Makefile
 psxtmmutex06/Makefile
 psxtmmutex07/Makefile

diff -u /dev/null rtems/testsuites/psxtmtests/psxtmmutex04/.cvsignore:1.1
--- /dev/null	Thu Jul 21 09:11:17 2011
+++ rtems/testsuites/psxtmtests/psxtmmutex04/.cvsignore	Thu Jul 21 08:48:52 2011
@@ -0,0 +1,2 @@
+Makefile
+Makefile.in

diff -u /dev/null rtems/testsuites/psxtmtests/psxtmmutex04/Makefile.am:1.1
--- /dev/null	Thu Jul 21 09:11:17 2011
+++ rtems/testsuites/psxtmtests/psxtmmutex04/Makefile.am	Thu Jul 21 08:48:52 2011
@@ -0,0 +1,30 @@
+##
+## $Id$
+##
+
+MANAGERS = all
+
+rtems_tests_PROGRAMS = psxtmmutex04
+psxtmmutex04_SOURCES = init.c ../../tmtests/include/timesys.h \
+    ../../support/src/tmtests_empty_function.c \
+    ../../support/src/tmtests_support.c
+
+dist_rtems_tests_DATA = psxtmmutex04.doc
+
+include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP at .cfg
+include $(top_srcdir)/../automake/compile.am
+include $(top_srcdir)/../automake/leaf.am
+
+OPERATION_COUNT = @OPERATION_COUNT@
+AM_CPPFLAGS += -I$(top_srcdir)/../tmtests/include
+AM_CPPFLAGS += -DOPERATION_COUNT=$(OPERATION_COUNT)
+AM_CPPFLAGS += -I$(top_srcdir)/../support/include
+
+LINK_OBJS = $(psxtmmutex04_OBJECTS) $(psxtmmutex04_LDADD)
+LINK_LIBS = $(psxtmmutex04_LDLIBS)
+
+psxtmmutex04$(EXEEXT): $(psxtmmutex04_OBJECTS) $(psxtmmutex04_DEPENDENCIES)
+	@rm -f psxtmmutex04$(EXEEXT)
+	$(make-exe)
+
+include $(top_srcdir)/../automake/local.am

diff -u /dev/null rtems/testsuites/psxtmtests/psxtmmutex04/init.c:1.1
--- /dev/null	Thu Jul 21 09:11:17 2011
+++ rtems/testsuites/psxtmtests/psxtmmutex04/init.c	Thu Jul 21 08:48:52 2011
@@ -0,0 +1,128 @@
+/*
+ *  COPYRIGHT (c) 1989-2011.
+ *  On-Line Applications Research Corporation (OAR).
+ *
+ *  The license and distribution terms for this file may be
+ *  found in the file LICENSE in this distribution or at
+ *  http://www.rtems.com/license/LICENSE.
+ *
+ *  $Id$
+ */
+
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
+#include <timesys.h>
+#include <tmacros.h>
+#include <rtems/timerdrv.h>
+#include "test_support.h"
+
+#include <pthread.h>
+#include <sched.h>
+
+pthread_mutex_t MutexId;
+
+void *Low(
+  void *argument
+)
+{  
+  uint32_t end_time;
+
+  /*
+   * Now we have finished the thread startup overhead,
+   * so let other threads run.  When we return, we can
+   * finish the benchmark.
+   */
+  sched_yield();
+    /* let other threads run */
+
+  end_time = benchmark_timer_read();
+
+  put_time(
+    "pthread_mutex_timedlock - not available, block",
+    end_time,
+    OPERATION_COUNT,
+    0,
+    0
+  );
+
+  puts( "*** END OF POSIX TIME TEST PSXTMMUTEX04 ***" );
+
+  rtems_test_exit( 0 );
+  return NULL;
+}
+
+void *Middle(
+  void *argument
+)
+{
+  int status;
+
+  /*
+   * Now we have finished the thread startup overhead,
+   * so let other threads run.  When we return, we can
+   * finish the benchmark.
+   */
+  sched_yield();
+    /* let other threads run */
+
+  status = pthread_mutex_lock( &MutexId);
+  rtems_test_assert( !status );  /*this is important*/
+
+  return NULL;
+}
+
+void *POSIX_Init(
+  void *argument
+)
+{
+  int        i;
+  int        status;
+  pthread_t  threadId;
+
+  puts( "\n\n*** POSIX TIME TEST PSXTMMUTEX04 ***" );
+
+  for ( i=0 ; i < OPERATION_COUNT - 1 ; i++ ) {
+    status = pthread_create( &threadId, NULL, Middle, NULL );
+    rtems_test_assert( !status );
+  }
+  
+  status = pthread_create( &threadId, NULL, Low, NULL );
+  rtems_test_assert( !status );
+
+  /*
+   * Deliberately create the mutex after the threads.  This way if the
+   * threads do run before we intend, they will get an error.
+   */
+  status = pthread_mutex_init( &MutexId, NULL );
+  rtems_test_assert( !status );
+
+  /*
+   * Let the other threads start so the thread startup overhead,
+   * is accounted for.  When we return, we can start the benchmark.
+   */
+  sched_yield();
+    /* let other threads run */
+
+  /* start the timer and switch through all the other tasks */
+  benchmark_timer_initialize();
+  status = pthread_mutex_timedlock( &MutexId, 0 );
+  rtems_test_assert( !status );
+
+  return NULL;
+}
+
+/* configuration information */
+
+#define CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER
+#define CONFIGURE_APPLICATION_NEEDS_TIMER_DRIVER
+
+#define CONFIGURE_MAXIMUM_POSIX_THREADS     OPERATION_COUNT + 2
+#define CONFIGURE_MAXIMUM_POSIX_MUTEXES     1
+#define CONFIGURE_POSIX_INIT_THREAD_TABLE
+
+#define CONFIGURE_INIT
+
+#include <rtems/confdefs.h>
+/* end of file */

diff -u /dev/null rtems/testsuites/psxtmtests/psxtmmutex04/psxtmmutex04.doc:1.1
--- /dev/null	Thu Jul 21 09:11:18 2011
+++ rtems/testsuites/psxtmtests/psxtmmutex04/psxtmmutex04.doc	Thu Jul 21 08:48:52 2011
@@ -0,0 +1,14 @@
+#
+#  $Id$
+#
+#  COPYRIGHT (c) 1989-2011.
+#  On-Line Applications Research Corporation (OAR).
+#
+#  The license and distribution terms for this file may be
+#  found in the file LICENSE in this distribution or at
+#  http://www.rtems.com/license/LICENSE.
+#
+
+This test benchmarks the following operations:
+
++ pthread_mutex_timedlock - not available, block



--

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/20110721/1eaae87a/attachment-0001.html>


More information about the vc mailing list