2007-08-09 22:21:44 +00:00
|
|
|
/**
|
|
|
|
* @file
|
|
|
|
* lwIP Operating System abstraction
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2002-10-19 12:59:30 +00:00
|
|
|
/*
|
2004-02-07 00:30:03 +00:00
|
|
|
* Copyright (c) 2001-2004 Swedish Institute of Computer Science.
|
2003-06-11 22:34:51 +00:00
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without modification,
|
2002-10-19 12:59:30 +00:00
|
|
|
* are permitted provided that the following conditions are met:
|
|
|
|
*
|
|
|
|
* 1. Redistributions of source code must retain the above copyright notice,
|
|
|
|
* this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
|
|
|
* this list of conditions and the following disclaimer in the documentation
|
|
|
|
* and/or other materials provided with the distribution.
|
|
|
|
* 3. The name of the author may not be used to endorse or promote products
|
2003-06-11 22:34:51 +00:00
|
|
|
* derived from this software without specific prior written permission.
|
2002-10-19 12:59:30 +00:00
|
|
|
*
|
2003-06-11 22:34:51 +00:00
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
|
|
|
|
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
|
|
|
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT
|
|
|
|
* SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
|
|
|
|
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
|
|
|
|
* OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
|
|
|
|
* IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY
|
2002-10-19 12:59:30 +00:00
|
|
|
* OF SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
* This file is part of the lwIP TCP/IP stack.
|
2003-06-11 22:34:51 +00:00
|
|
|
*
|
2002-10-19 12:59:30 +00:00
|
|
|
* Author: Adam Dunkels <adam@sics.se>
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "lwip/opt.h"
|
2007-09-07 23:01:59 +00:00
|
|
|
|
|
|
|
#include "lwip/sys.h"
|
2003-06-11 22:34:51 +00:00
|
|
|
|
2009-12-31 16:16:44 +00:00
|
|
|
/* Most of the functions defined in sys.h must be implemented in the
|
|
|
|
* architecture-dependent file sys_arch.c */
|
2002-10-19 12:59:30 +00:00
|
|
|
|
2009-12-31 16:16:44 +00:00
|
|
|
#if !NO_SYS
|
2003-11-14 13:17:23 +00:00
|
|
|
|
2011-11-23 19:58:19 +00:00
|
|
|
#ifndef sys_msleep
|
2007-06-07 20:56:48 +00:00
|
|
|
/**
|
2009-12-31 16:16:44 +00:00
|
|
|
* Sleep for some ms. Timeouts are NOT processed while sleeping.
|
2007-06-07 20:56:48 +00:00
|
|
|
*
|
|
|
|
* @param ms number of milliseconds to sleep
|
|
|
|
*/
|
2003-06-02 11:10:20 +00:00
|
|
|
void
|
|
|
|
sys_msleep(u32_t ms)
|
|
|
|
{
|
2009-12-31 16:16:44 +00:00
|
|
|
if (ms > 0) {
|
2010-02-12 13:49:21 +00:00
|
|
|
sys_sem_t delaysem;
|
|
|
|
err_t err = sys_sem_new(&delaysem, 0);
|
|
|
|
if (err == ERR_OK) {
|
|
|
|
sys_arch_sem_wait(&delaysem, ms);
|
|
|
|
sys_sem_free(&delaysem);
|
|
|
|
}
|
2009-12-31 16:16:44 +00:00
|
|
|
}
|
2003-06-02 11:10:20 +00:00
|
|
|
}
|
2011-11-23 19:58:19 +00:00
|
|
|
#endif /* sys_msleep */
|
2003-11-14 13:17:23 +00:00
|
|
|
|
2009-12-31 16:16:44 +00:00
|
|
|
#endif /* !NO_SYS */
|