summaryrefslogtreecommitdiffstats
path: root/testsuites/psxtmtests
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@oarcorp.com>2014-09-03 10:16:43 -0500
committerJoel Sherrill <joel.sherrill@oarcorp.com>2014-09-04 09:08:05 -0500
commitde549c3df9310861ccd4b19ef837bb94565b2290 (patch)
treebabd9997da5f84ccd12edc07126000fad14f5c30 /testsuites/psxtmtests
parentspfreechain01/init.c: Use %zd for size_t to eliminate warning (diff)
downloadrtems-de549c3df9310861ccd4b19ef837bb94565b2290.tar.bz2
Misc psxtmtests: Use uint32_t not long for end_time to match printf() format expectations
Diffstat (limited to 'testsuites/psxtmtests')
-rw-r--r--testsuites/psxtmtests/psxtmcond01/init.c8
-rw-r--r--testsuites/psxtmtests/psxtmcond02/init.c4
-rw-r--r--testsuites/psxtmtests/psxtmcond03/init.c2
-rw-r--r--testsuites/psxtmtests/psxtmcond04/init.c8
-rw-r--r--testsuites/psxtmtests/psxtmcond05/init.c4
-rw-r--r--testsuites/psxtmtests/psxtmcond06/init.c2
-rw-r--r--testsuites/psxtmtests/psxtmcond08/init.c2
-rw-r--r--testsuites/psxtmtests/psxtmthread02/init.c2
-rw-r--r--testsuites/psxtmtests/psxtmthread04/init.c16
-rw-r--r--testsuites/psxtmtests/psxtmthread05/init.c3
-rw-r--r--testsuites/psxtmtests/psxtmthread06/init.c2
11 files changed, 27 insertions, 26 deletions
diff --git a/testsuites/psxtmtests/psxtmcond01/init.c b/testsuites/psxtmtests/psxtmcond01/init.c
index 7f1f820be1..c4dd63080c 100644
--- a/testsuites/psxtmtests/psxtmcond01/init.c
+++ b/testsuites/psxtmtests/psxtmcond01/init.c
@@ -30,8 +30,8 @@ pthread_cond_t mycondvar;
void benchmark_create_cond_var(void)
{
- long end_time;
- int status;
+ uint32_t end_time;
+ int status;
benchmark_timer_initialize();
status = pthread_cond_init(&mycondvar, NULL);
@@ -49,8 +49,8 @@ void benchmark_create_cond_var(void)
void benchmark_destroy_cond_var(void)
{
- long end_time;
- int status;
+ uint32_t end_time;
+ int status;
benchmark_timer_initialize();
status = pthread_cond_destroy(&mycondvar);
diff --git a/testsuites/psxtmtests/psxtmcond02/init.c b/testsuites/psxtmtests/psxtmcond02/init.c
index 7621517fb7..668bb432b9 100644
--- a/testsuites/psxtmtests/psxtmcond02/init.c
+++ b/testsuites/psxtmtests/psxtmcond02/init.c
@@ -26,8 +26,8 @@ pthread_cond_t CondID;
void benchmark_signal(void)
{
- long end_time;
- int status;
+ uint32_t end_time;
+ int status;
benchmark_timer_initialize();
diff --git a/testsuites/psxtmtests/psxtmcond03/init.c b/testsuites/psxtmtests/psxtmcond03/init.c
index f901878578..795c8d4982 100644
--- a/testsuites/psxtmtests/psxtmcond03/init.c
+++ b/testsuites/psxtmtests/psxtmcond03/init.c
@@ -52,7 +52,7 @@ void *POSIX_Init(
{
int status;
pthread_t threadId;
- long end_time;
+ uint32_t end_time;
struct sched_param param;
int policy;
diff --git a/testsuites/psxtmtests/psxtmcond04/init.c b/testsuites/psxtmtests/psxtmcond04/init.c
index eb2823082e..2c16dfa04f 100644
--- a/testsuites/psxtmtests/psxtmcond04/init.c
+++ b/testsuites/psxtmtests/psxtmcond04/init.c
@@ -33,10 +33,10 @@ void *Blocker(
)
{
- long end_time;
- struct sched_param param;
- int policy;
- int status;
+ uint32_t end_time;
+ struct sched_param param;
+ int policy;
+ int status;
status = pthread_mutex_lock(&MutexID);
rtems_test_assert( status == 0 );
diff --git a/testsuites/psxtmtests/psxtmcond05/init.c b/testsuites/psxtmtests/psxtmcond05/init.c
index 1e74c21bc2..ab15fc3a03 100644
--- a/testsuites/psxtmtests/psxtmcond05/init.c
+++ b/testsuites/psxtmtests/psxtmcond05/init.c
@@ -26,8 +26,8 @@ pthread_cond_t CondID;
void benchmark_broadcast(void)
{
- long end_time;
- int status;
+ uint32_t end_time;
+ int status;
benchmark_timer_initialize();
status = pthread_cond_broadcast(&CondID);
diff --git a/testsuites/psxtmtests/psxtmcond06/init.c b/testsuites/psxtmtests/psxtmcond06/init.c
index 371792640f..91bef6c5f8 100644
--- a/testsuites/psxtmtests/psxtmcond06/init.c
+++ b/testsuites/psxtmtests/psxtmcond06/init.c
@@ -52,7 +52,7 @@ void *POSIX_Init(
void *argument
)
{
- long end_time;
+ uint32_t end_time;
int status;
int i;
pthread_t threadId;
diff --git a/testsuites/psxtmtests/psxtmcond08/init.c b/testsuites/psxtmtests/psxtmcond08/init.c
index 3da351c266..49ad0d7637 100644
--- a/testsuites/psxtmtests/psxtmcond08/init.c
+++ b/testsuites/psxtmtests/psxtmcond08/init.c
@@ -50,7 +50,7 @@ void *Low(
void *argument
)
{
- long end_time;
+ uint32_t end_time;
end_time = benchmark_timer_read();
diff --git a/testsuites/psxtmtests/psxtmthread02/init.c b/testsuites/psxtmtests/psxtmthread02/init.c
index 4357938ad2..bafa2ac986 100644
--- a/testsuites/psxtmtests/psxtmthread02/init.c
+++ b/testsuites/psxtmtests/psxtmthread02/init.c
@@ -53,7 +53,7 @@ void *thread(
void *argument
)
{
- long end_time;
+ uint32_t end_time;
end_time = benchmark_timer_read();
put_time(
diff --git a/testsuites/psxtmtests/psxtmthread04/init.c b/testsuites/psxtmtests/psxtmthread04/init.c
index 28e1833a8a..dc1290c56a 100644
--- a/testsuites/psxtmtests/psxtmthread04/init.c
+++ b/testsuites/psxtmtests/psxtmthread04/init.c
@@ -26,10 +26,10 @@ void *POSIX_Init(void *argument);
void benchmark_pthread_getschedparam(void)
{
- long end_time;
- int status;
- int policy;
- struct sched_param param;
+ uint32_t end_time;
+ int status;
+ int policy;
+ struct sched_param param;
benchmark_timer_initialize();
status = pthread_getschedparam( pthread_self(), &policy, &param );
@@ -48,10 +48,10 @@ void benchmark_pthread_getschedparam(void)
void benchmark_pthread_setschedparam(void)
{
- long end_time;
- int status;
- int policy;
- struct sched_param param;
+ uint32_t end_time;
+ int status;
+ int policy;
+ struct sched_param param;
status = pthread_getschedparam( pthread_self(), &policy, &param );
rtems_test_assert( status == 0 );
diff --git a/testsuites/psxtmtests/psxtmthread05/init.c b/testsuites/psxtmtests/psxtmthread05/init.c
index 98346b6be6..f127663fab 100644
--- a/testsuites/psxtmtests/psxtmthread05/init.c
+++ b/testsuites/psxtmtests/psxtmthread05/init.c
@@ -54,7 +54,8 @@ void *test_thread(
void *argument
)
{
- long end_time;
+ uint32_t end_time;
+
sched_yield();
end_time = benchmark_timer_read();
diff --git a/testsuites/psxtmtests/psxtmthread06/init.c b/testsuites/psxtmtests/psxtmthread06/init.c
index 0a7ee34eeb..3466a8dbc0 100644
--- a/testsuites/psxtmtests/psxtmthread06/init.c
+++ b/testsuites/psxtmtests/psxtmthread06/init.c
@@ -53,7 +53,7 @@ void *test_thread(
void *argument
)
{
- long end_time;
+ uint32_t end_time;
/* switch to POSIX_Init */
sched_yield();