Changeset cd50bea in rtems for testsuites/validation/tc-clock-nanosleep.c
- Timestamp:
- 06/22/22 09:02:33 (16 months ago)
- Branches:
- master
- Children:
- 94df3a7a
- Parents:
- 085f363
- git-author:
- Sebastian Huber <sebastian.huber@…> (06/22/22 09:02:33)
- git-committer:
- Sebastian Huber <sebastian.huber@…> (06/23/22 07:20:11)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
testsuites/validation/tc-clock-nanosleep.c
r085f363 rcd50bea 326 326 while ( true ) { 327 327 T_scheduler_log *log; 328 uint32_t counter; 328 329 329 330 SuspendSelf(); … … 332 333 T_null( log ); 333 334 334 _Timecounter_Getnanotime( &ctx->now_realtime ); 335 _Timecounter_Getnanouptime( &ctx->now_monotonic ); 335 counter = GetTimecountCounter(); 336 _Timecounter_Nanotime( &ctx->now_realtime ); 337 SetTimecountCounter( counter ); 338 339 counter = GetTimecountCounter(); 340 _Timecounter_Nanouptime( &ctx->now_monotonic ); 341 SetTimecountCounter( counter ); 336 342 337 343 ctx->status = clock_nanosleep(
Note: See TracChangeset
for help on using the changeset viewer.