summaryrefslogtreecommitdiffstats
path: root/testsuites/psxtests/psxstack01/init.c
diff options
context:
space:
mode:
Diffstat (limited to 'testsuites/psxtests/psxstack01/init.c')
-rw-r--r--testsuites/psxtests/psxstack01/init.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/testsuites/psxtests/psxstack01/init.c b/testsuites/psxtests/psxstack01/init.c
index 70a4b65949..6866f286ec 100644
--- a/testsuites/psxtests/psxstack01/init.c
+++ b/testsuites/psxtests/psxstack01/init.c
@@ -49,6 +49,7 @@ void *POSIX_Init(
int sc;
pthread_t id;
pthread_attr_t attr;
+ struct timespec delay_request;
puts( "\n\n*** POSIX STACK ATTRIBUTE TEST 01 ***" );
@@ -72,7 +73,10 @@ void *POSIX_Init(
assert( !sc );
puts( "Init - let other thread run" );
- usleep( 500000 );
+ delay_request.tv_sec = 0;
+ delay_request.tv_nsec = 5 * 100000000;
+ sc = nanosleep( &delay_request, NULL );
+ assert( !sc );
puts( "*** END OF POSIX STACK ATTRIBUTE TEST 01 ***" );
rtems_test_exit(0);