summaryrefslogtreecommitdiff
path: root/cpukit/libfs/src/nfsclient/src/rpcio.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2009-08-10 16:10:37 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2009-08-10 16:10:37 +0000
commitf0266e169325eab8e2f7204e77937ae8ab98d47c (patch)
tree6019af358475fbf86f6e8a5beb477ba1f8bc7ea8 /cpukit/libfs/src/nfsclient/src/rpcio.c
parentf6ef96c2739580c6d91e7fadd22859c2910d4711 (diff)
2009-08-10 Joel Sherrill <joel.sherrill@oarcorp.com>
* libcsupport/src/__times.c, libfs/src/nfsclient/src/nfsTest.c, libfs/src/nfsclient/src/rpcio.c: Convert calls to legacy routine rtems_clock_get( RTEMS_CLOCK_GET_xxx, ..) to rtems_clock_get_xxx().
Diffstat (limited to 'cpukit/libfs/src/nfsclient/src/rpcio.c')
-rw-r--r--cpukit/libfs/src/nfsclient/src/rpcio.c9
1 files changed, 3 insertions, 6 deletions
diff --git a/cpukit/libfs/src/nfsclient/src/rpcio.c b/cpukit/libfs/src/nfsclient/src/rpcio.c
index 5e3abe416a..71a4161b58 100644
--- a/cpukit/libfs/src/nfsclient/src/rpcio.c
+++ b/cpukit/libfs/src/nfsclient/src/rpcio.c
@@ -941,8 +941,7 @@ struct sockwakeup wkup;
s = ioctl(ourSock, FIONBIO, (char*)&noblock);
assert( s == 0 );
/* assume nobody tampers with the clock !! */
- status = rtems_clock_get(RTEMS_CLOCK_GET_TICKS_PER_SECOND, &ticksPerSec);
- assert( status == RTEMS_SUCCESSFUL );
+ ticksPerSec = rtems_clock_get_ticks_per_second();
MU_CREAT( &hlock );
MU_CREAT( &llock );
@@ -1155,8 +1154,7 @@ unsigned long max_period = RPCIOD_RETX_CAP_S * ticksPerSec;
rtems_status_code status;
- status = rtems_clock_get( RTEMS_CLOCK_GET_TICKS_SINCE_BOOT, &then );
- assert( status == RTEMS_SUCCESSFUL );
+ then = rtems_clock_get_ticks_since_boot();
for (next_retrans = epoch;;) {
@@ -1199,8 +1197,7 @@ rtems_status_code status;
}
}
- status = rtems_clock_get( RTEMS_CLOCK_GET_TICKS_SINCE_BOOT, &unow );
- assert( status == RTEMS_SUCCESSFUL );
+ unow = rtems_clock_get_ticks_since_boot();
/* measure everything relative to then to protect against
* rollover