summaryrefslogtreecommitdiffstats
path: root/nuttx/net/net_timeo.c
diff options
context:
space:
mode:
Diffstat (limited to 'nuttx/net/net_timeo.c')
-rw-r--r--nuttx/net/net_timeo.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/nuttx/net/net_timeo.c b/nuttx/net/net_timeo.c
index 191136fca8..42d1aff0a3 100644
--- a/nuttx/net/net_timeo.c
+++ b/nuttx/net/net_timeo.c
@@ -1,7 +1,7 @@
/****************************************************************************
* net/net_timeo.c
*
- * Copyright (C) 2007-2009 Gregory Nutt. All rights reserved.
+ * Copyright (C) 2007-2009, 2011 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <spudmonkey@racsa.co.cr>
*
* Redistribution and use in source and binary forms, with or without
@@ -72,7 +72,7 @@
int net_timeo(uint32_t start_time, socktimeo_t timeo)
{
uint32_t timeo_ticks = DSEC2TICK(timeo);
- uint32_t elapsed = g_system_timer - start_time;
+ uint32_t elapsed = clock_systimer() - start_time;
if (elapsed >= timeo_ticks)
{