2003-01-18 18:18:02 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2001-2003 Swedish Institute of Computer Science.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without modification,
|
|
|
|
* 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
|
|
|
|
* derived from this software without specific prior written permission.
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
* OF SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
* This file is part of the lwIP TCP/IP stack.
|
|
|
|
*
|
|
|
|
* Author: Adam Dunkels <adam@sics.se>
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Wed Apr 17 16:05:29 EDT 2002 (James Roth)
|
|
|
|
*
|
|
|
|
* - Fixed an unlikely sys_thread_new() race condition.
|
|
|
|
*
|
|
|
|
* - Made current_thread() work with threads which where
|
|
|
|
* not created with sys_thread_new(). This includes
|
|
|
|
* the main thread and threads made with pthread_create().
|
|
|
|
*
|
|
|
|
* - Catch overflows where more than SYS_MBOX_SIZE messages
|
|
|
|
* are waiting to be read. The sys_mbox_post() routine
|
|
|
|
* will block until there is more room instead of just
|
|
|
|
* leaking messages.
|
|
|
|
*/
|
|
|
|
#include "lwip/debug.h"
|
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
#include <sys/time.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <pthread.h>
|
|
|
|
|
|
|
|
#include "lwip/sys.h"
|
|
|
|
#include "lwip/opt.h"
|
|
|
|
#include "lwip/stats.h"
|
|
|
|
|
|
|
|
#define UMAX(a, b) ((a) > (b) ? (a) : (b))
|
|
|
|
|
|
|
|
static struct sys_thread *threads = NULL;
|
|
|
|
static pthread_mutex_t threads_mutex = PTHREAD_MUTEX_INITIALIZER;
|
|
|
|
|
|
|
|
struct sys_mbox_msg {
|
|
|
|
struct sys_mbox_msg *next;
|
|
|
|
void *msg;
|
|
|
|
};
|
|
|
|
|
|
|
|
#define SYS_MBOX_SIZE 128
|
|
|
|
|
|
|
|
struct sys_mbox {
|
|
|
|
int first, last;
|
|
|
|
void *msgs[SYS_MBOX_SIZE];
|
2008-05-30 11:28:28 +00:00
|
|
|
struct sys_sem *not_empty;
|
|
|
|
struct sys_sem *not_full;
|
2003-01-18 18:18:02 +00:00
|
|
|
struct sys_sem *mutex;
|
|
|
|
int wait_send;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct sys_sem {
|
|
|
|
unsigned int c;
|
|
|
|
pthread_cond_t cond;
|
|
|
|
pthread_mutex_t mutex;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct sys_thread {
|
|
|
|
struct sys_thread *next;
|
|
|
|
struct sys_timeouts timeouts;
|
|
|
|
pthread_t pthread;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
static struct timeval starttime;
|
|
|
|
|
2003-02-04 22:52:01 +00:00
|
|
|
static pthread_mutex_t lwprot_mutex = PTHREAD_MUTEX_INITIALIZER;
|
|
|
|
static pthread_t lwprot_thread = (pthread_t) 0xDEAD;
|
|
|
|
static int lwprot_count = 0;
|
|
|
|
|
2008-05-30 11:28:28 +00:00
|
|
|
static struct sys_sem *sys_sem_new_internal(u8_t count);
|
|
|
|
static void sys_sem_free_internal(struct sys_sem *sem);
|
2003-01-18 18:18:02 +00:00
|
|
|
|
2003-02-04 14:48:54 +00:00
|
|
|
static u32_t cond_wait(pthread_cond_t * cond, pthread_mutex_t * mutex,
|
2003-02-18 21:14:26 +00:00
|
|
|
u32_t timeout);
|
2003-01-18 18:18:02 +00:00
|
|
|
|
|
|
|
/*-----------------------------------------------------------------------------------*/
|
|
|
|
static struct sys_thread *
|
|
|
|
introduce_thread(pthread_t id)
|
|
|
|
{
|
|
|
|
struct sys_thread *thread;
|
|
|
|
|
|
|
|
thread = malloc(sizeof(struct sys_thread));
|
|
|
|
|
2006-07-03 07:23:05 +00:00
|
|
|
if (thread != NULL) {
|
2003-01-18 18:18:02 +00:00
|
|
|
pthread_mutex_lock(&threads_mutex);
|
|
|
|
thread->next = threads;
|
|
|
|
thread->timeouts.next = NULL;
|
|
|
|
thread->pthread = id;
|
|
|
|
threads = thread;
|
|
|
|
pthread_mutex_unlock(&threads_mutex);
|
|
|
|
}
|
|
|
|
|
|
|
|
return thread;
|
|
|
|
}
|
|
|
|
/*-----------------------------------------------------------------------------------*/
|
|
|
|
static struct sys_thread *
|
|
|
|
current_thread(void)
|
|
|
|
{
|
|
|
|
struct sys_thread *st;
|
|
|
|
pthread_t pt;
|
|
|
|
pt = pthread_self();
|
|
|
|
pthread_mutex_lock(&threads_mutex);
|
|
|
|
|
|
|
|
for(st = threads; st != NULL; st = st->next) {
|
2003-05-01 13:27:52 +00:00
|
|
|
if (pthread_equal(st->pthread, pt)) {
|
2003-01-18 18:18:02 +00:00
|
|
|
pthread_mutex_unlock(&threads_mutex);
|
|
|
|
|
|
|
|
return st;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pthread_mutex_unlock(&threads_mutex);
|
|
|
|
|
|
|
|
st = introduce_thread(pt);
|
|
|
|
|
2003-05-01 13:27:52 +00:00
|
|
|
if (!st) {
|
2003-01-18 18:18:02 +00:00
|
|
|
printf("current_thread???\n");
|
|
|
|
abort();
|
|
|
|
}
|
|
|
|
|
|
|
|
return st;
|
|
|
|
}
|
|
|
|
/*-----------------------------------------------------------------------------------*/
|
2003-02-11 20:59:49 +00:00
|
|
|
sys_thread_t
|
2007-09-05 16:48:11 +00:00
|
|
|
sys_thread_new(char *name, void (* function)(void *arg), void *arg, int stacksize, int prio)
|
2003-01-18 18:18:02 +00:00
|
|
|
{
|
|
|
|
int code;
|
|
|
|
pthread_t tmp;
|
|
|
|
struct sys_thread *st = NULL;
|
2008-07-16 20:37:56 +00:00
|
|
|
LWIP_UNUSED_ARG(name);
|
|
|
|
LWIP_UNUSED_ARG(stacksize);
|
|
|
|
LWIP_UNUSED_ARG(prio);
|
|
|
|
|
2003-01-18 18:18:02 +00:00
|
|
|
code = pthread_create(&tmp,
|
2003-02-18 21:14:26 +00:00
|
|
|
NULL,
|
|
|
|
(void *(*)(void *))
|
|
|
|
function,
|
|
|
|
arg);
|
2003-01-18 18:18:02 +00:00
|
|
|
|
2003-05-01 13:27:52 +00:00
|
|
|
if (0 == code) {
|
2003-01-18 18:18:02 +00:00
|
|
|
st = introduce_thread(tmp);
|
|
|
|
}
|
|
|
|
|
2003-05-01 13:27:52 +00:00
|
|
|
if (NULL == st) {
|
2008-09-30 13:48:07 +00:00
|
|
|
LWIP_DEBUGF(SYS_DEBUG, ("sys_thread_new: pthread_create %d, st = 0x%lx",
|
|
|
|
code, (unsigned long)st));
|
2003-01-18 18:18:02 +00:00
|
|
|
abort();
|
|
|
|
}
|
2003-02-11 20:59:49 +00:00
|
|
|
return st;
|
2003-01-18 18:18:02 +00:00
|
|
|
}
|
|
|
|
/*-----------------------------------------------------------------------------------*/
|
|
|
|
struct sys_mbox *
|
2008-01-17 11:51:09 +00:00
|
|
|
sys_mbox_new(int size)
|
2003-01-18 18:18:02 +00:00
|
|
|
{
|
|
|
|
struct sys_mbox *mbox;
|
2008-07-16 20:37:56 +00:00
|
|
|
LWIP_UNUSED_ARG(size);
|
2003-01-18 18:18:02 +00:00
|
|
|
|
|
|
|
mbox = malloc(sizeof(struct sys_mbox));
|
2006-07-03 07:23:05 +00:00
|
|
|
if (mbox != NULL) {
|
|
|
|
mbox->first = mbox->last = 0;
|
2008-05-30 11:28:28 +00:00
|
|
|
mbox->not_empty = sys_sem_new_internal(0);
|
|
|
|
mbox->not_full = sys_sem_new_internal(0);
|
|
|
|
mbox->mutex = sys_sem_new_internal(1);
|
2006-07-03 07:23:05 +00:00
|
|
|
mbox->wait_send = 0;
|
2003-01-18 18:18:02 +00:00
|
|
|
|
2003-11-24 08:11:32 +00:00
|
|
|
#if SYS_STATS
|
2006-07-03 07:23:05 +00:00
|
|
|
lwip_stats.sys.mbox.used++;
|
|
|
|
if (lwip_stats.sys.mbox.used > lwip_stats.sys.mbox.max) {
|
|
|
|
lwip_stats.sys.mbox.max = lwip_stats.sys.mbox.used;
|
|
|
|
}
|
2003-01-18 18:18:02 +00:00
|
|
|
#endif /* SYS_STATS */
|
2006-07-03 07:23:05 +00:00
|
|
|
}
|
2003-01-18 18:18:02 +00:00
|
|
|
return mbox;
|
|
|
|
}
|
|
|
|
/*-----------------------------------------------------------------------------------*/
|
|
|
|
void
|
|
|
|
sys_mbox_free(struct sys_mbox *mbox)
|
|
|
|
{
|
2003-05-01 13:27:52 +00:00
|
|
|
if (mbox != SYS_MBOX_NULL) {
|
2003-11-24 08:11:32 +00:00
|
|
|
#if SYS_STATS
|
2003-01-18 18:18:02 +00:00
|
|
|
lwip_stats.sys.mbox.used--;
|
|
|
|
#endif /* SYS_STATS */
|
2009-04-17 10:30:30 +00:00
|
|
|
sys_arch_sem_wait(mbox->mutex, 0);
|
2003-01-18 18:18:02 +00:00
|
|
|
|
2008-05-30 11:28:28 +00:00
|
|
|
sys_sem_free_internal(mbox->not_empty);
|
|
|
|
sys_sem_free_internal(mbox->not_full);
|
|
|
|
sys_sem_free_internal(mbox->mutex);
|
|
|
|
mbox->not_empty = mbox->not_full = mbox->mutex = NULL;
|
2003-06-10 10:45:29 +00:00
|
|
|
/* LWIP_DEBUGF("sys_mbox_free: mbox 0x%lx\n", mbox); */
|
2003-01-18 18:18:02 +00:00
|
|
|
free(mbox);
|
|
|
|
}
|
|
|
|
}
|
2008-01-17 11:51:09 +00:00
|
|
|
/*-----------------------------------------------------------------------------------*/
|
|
|
|
err_t
|
|
|
|
sys_mbox_trypost(struct sys_mbox *mbox, void *msg)
|
|
|
|
{
|
|
|
|
u8_t first;
|
|
|
|
|
2009-04-17 10:30:30 +00:00
|
|
|
sys_arch_sem_wait(mbox->mutex, 0);
|
2008-01-17 11:51:09 +00:00
|
|
|
|
|
|
|
LWIP_DEBUGF(SYS_DEBUG, ("sys_mbox_trypost: mbox %p msg %p\n",
|
|
|
|
(void *)mbox, (void *)msg));
|
|
|
|
|
2008-05-30 11:41:51 +00:00
|
|
|
if ((mbox->last + 1) >= (mbox->first + SYS_MBOX_SIZE)) {
|
|
|
|
sys_sem_signal(mbox->mutex);
|
2008-01-17 11:51:09 +00:00
|
|
|
return ERR_MEM;
|
2008-05-30 11:41:51 +00:00
|
|
|
}
|
2003-01-18 18:18:02 +00:00
|
|
|
|
2008-01-17 11:51:09 +00:00
|
|
|
mbox->msgs[mbox->last % SYS_MBOX_SIZE] = msg;
|
|
|
|
|
|
|
|
if (mbox->last == mbox->first) {
|
|
|
|
first = 1;
|
|
|
|
} else {
|
|
|
|
first = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
mbox->last++;
|
|
|
|
|
|
|
|
if (first) {
|
2008-05-30 11:28:28 +00:00
|
|
|
sys_sem_signal(mbox->not_empty);
|
2008-01-17 11:51:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
sys_sem_signal(mbox->mutex);
|
|
|
|
|
|
|
|
return ERR_OK;
|
|
|
|
}
|
2003-01-18 18:18:02 +00:00
|
|
|
/*-----------------------------------------------------------------------------------*/
|
|
|
|
void
|
|
|
|
sys_mbox_post(struct sys_mbox *mbox, void *msg)
|
|
|
|
{
|
|
|
|
u8_t first;
|
|
|
|
|
2009-04-17 10:30:30 +00:00
|
|
|
sys_arch_sem_wait(mbox->mutex, 0);
|
2003-01-18 18:18:02 +00:00
|
|
|
|
2003-06-10 10:45:29 +00:00
|
|
|
LWIP_DEBUGF(SYS_DEBUG, ("sys_mbox_post: mbox %p msg %p\n", (void *)mbox, (void *)msg));
|
2003-01-18 18:18:02 +00:00
|
|
|
|
2003-05-01 13:27:52 +00:00
|
|
|
while ((mbox->last + 1) >= (mbox->first + SYS_MBOX_SIZE)) {
|
2003-01-18 18:18:02 +00:00
|
|
|
mbox->wait_send++;
|
|
|
|
sys_sem_signal(mbox->mutex);
|
2008-05-30 11:28:28 +00:00
|
|
|
sys_arch_sem_wait(mbox->not_full, 0);
|
2003-01-18 18:18:02 +00:00
|
|
|
sys_arch_sem_wait(mbox->mutex, 0);
|
|
|
|
mbox->wait_send--;
|
|
|
|
}
|
|
|
|
|
|
|
|
mbox->msgs[mbox->last % SYS_MBOX_SIZE] = msg;
|
|
|
|
|
2003-05-01 13:27:52 +00:00
|
|
|
if (mbox->last == mbox->first) {
|
2003-01-18 18:18:02 +00:00
|
|
|
first = 1;
|
|
|
|
} else {
|
|
|
|
first = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
mbox->last++;
|
|
|
|
|
2003-05-01 13:27:52 +00:00
|
|
|
if (first) {
|
2008-05-30 11:28:28 +00:00
|
|
|
sys_sem_signal(mbox->not_empty);
|
2003-01-18 18:18:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
sys_sem_signal(mbox->mutex);
|
|
|
|
}
|
|
|
|
/*-----------------------------------------------------------------------------------*/
|
2003-02-04 14:48:54 +00:00
|
|
|
u32_t
|
2008-01-15 13:10:51 +00:00
|
|
|
sys_arch_mbox_tryfetch(struct sys_mbox *mbox, void **msg)
|
|
|
|
{
|
|
|
|
sys_arch_sem_wait(mbox->mutex, 0);
|
|
|
|
|
|
|
|
if (mbox->first == mbox->last) {
|
|
|
|
sys_sem_signal(mbox->mutex);
|
|
|
|
return SYS_MBOX_EMPTY;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (msg != NULL) {
|
|
|
|
LWIP_DEBUGF(SYS_DEBUG, ("sys_mbox_tryfetch: mbox %p msg %p\n", (void *)mbox, *msg));
|
|
|
|
*msg = mbox->msgs[mbox->first % SYS_MBOX_SIZE];
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
LWIP_DEBUGF(SYS_DEBUG, ("sys_mbox_tryfetch: mbox %p, null msg\n", (void *)mbox));
|
|
|
|
}
|
|
|
|
|
|
|
|
mbox->first++;
|
|
|
|
|
|
|
|
if (mbox->wait_send) {
|
2008-05-30 11:28:28 +00:00
|
|
|
sys_sem_signal(mbox->not_full);
|
2008-01-15 13:10:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
sys_sem_signal(mbox->mutex);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
/*-----------------------------------------------------------------------------------*/
|
|
|
|
u32_t
|
2003-02-04 14:48:54 +00:00
|
|
|
sys_arch_mbox_fetch(struct sys_mbox *mbox, void **msg, u32_t timeout)
|
2003-01-18 18:18:02 +00:00
|
|
|
{
|
2008-07-16 20:37:56 +00:00
|
|
|
u32_t time_needed = 0;
|
2003-01-18 18:18:02 +00:00
|
|
|
|
|
|
|
/* The mutex lock is quick so we don't bother with the timeout
|
|
|
|
stuff here. */
|
|
|
|
sys_arch_sem_wait(mbox->mutex, 0);
|
|
|
|
|
2003-05-01 13:27:52 +00:00
|
|
|
while (mbox->first == mbox->last) {
|
2003-01-18 18:18:02 +00:00
|
|
|
sys_sem_signal(mbox->mutex);
|
|
|
|
|
|
|
|
/* We block while waiting for a mail to arrive in the mailbox. We
|
|
|
|
must be prepared to timeout. */
|
2003-05-01 13:27:52 +00:00
|
|
|
if (timeout != 0) {
|
2008-07-16 20:37:56 +00:00
|
|
|
time_needed = sys_arch_sem_wait(mbox->not_empty, timeout);
|
2003-01-18 18:18:02 +00:00
|
|
|
|
2008-07-16 20:37:56 +00:00
|
|
|
if (time_needed == SYS_ARCH_TIMEOUT) {
|
2003-05-19 14:45:02 +00:00
|
|
|
return SYS_ARCH_TIMEOUT;
|
2003-01-18 18:18:02 +00:00
|
|
|
}
|
|
|
|
} else {
|
2008-05-30 11:28:28 +00:00
|
|
|
sys_arch_sem_wait(mbox->not_empty, 0);
|
2003-01-18 18:18:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
sys_arch_sem_wait(mbox->mutex, 0);
|
|
|
|
}
|
|
|
|
|
2003-05-01 13:27:52 +00:00
|
|
|
if (msg != NULL) {
|
2004-07-29 09:37:46 +00:00
|
|
|
LWIP_DEBUGF(SYS_DEBUG, ("sys_mbox_fetch: mbox %p msg %p\n", (void *)mbox, *msg));
|
2003-01-18 18:18:02 +00:00
|
|
|
*msg = mbox->msgs[mbox->first % SYS_MBOX_SIZE];
|
|
|
|
}
|
2004-07-29 09:37:46 +00:00
|
|
|
else{
|
|
|
|
LWIP_DEBUGF(SYS_DEBUG, ("sys_mbox_fetch: mbox %p, null msg\n", (void *)mbox));
|
|
|
|
}
|
2003-01-18 18:18:02 +00:00
|
|
|
|
|
|
|
mbox->first++;
|
|
|
|
|
2003-05-01 13:27:52 +00:00
|
|
|
if (mbox->wait_send) {
|
2008-05-30 11:28:28 +00:00
|
|
|
sys_sem_signal(mbox->not_full);
|
2003-01-18 18:18:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
sys_sem_signal(mbox->mutex);
|
|
|
|
|
2008-07-16 20:37:56 +00:00
|
|
|
return time_needed;
|
2003-01-18 18:18:02 +00:00
|
|
|
}
|
|
|
|
/*-----------------------------------------------------------------------------------*/
|
|
|
|
static struct sys_sem *
|
2008-05-30 11:28:28 +00:00
|
|
|
sys_sem_new_internal(u8_t count)
|
2003-01-18 18:18:02 +00:00
|
|
|
{
|
|
|
|
struct sys_sem *sem;
|
|
|
|
|
|
|
|
sem = malloc(sizeof(struct sys_sem));
|
2006-07-03 07:23:05 +00:00
|
|
|
if (sem != NULL) {
|
|
|
|
sem->c = count;
|
|
|
|
pthread_cond_init(&(sem->cond), NULL);
|
|
|
|
pthread_mutex_init(&(sem->mutex), NULL);
|
|
|
|
}
|
2003-01-18 18:18:02 +00:00
|
|
|
return sem;
|
|
|
|
}
|
2008-05-30 11:28:28 +00:00
|
|
|
/*-----------------------------------------------------------------------------------*/
|
|
|
|
struct sys_sem *
|
|
|
|
sys_sem_new(u8_t count)
|
|
|
|
{
|
|
|
|
#if SYS_STATS
|
|
|
|
lwip_stats.sys.sem.used++;
|
|
|
|
if (lwip_stats.sys.sem.used > lwip_stats.sys.sem.max) {
|
|
|
|
lwip_stats.sys.sem.max = lwip_stats.sys.sem.used;
|
|
|
|
}
|
|
|
|
#endif /* SYS_STATS */
|
|
|
|
return sys_sem_new_internal(count);
|
|
|
|
}
|
2003-01-18 18:18:02 +00:00
|
|
|
/*-----------------------------------------------------------------------------------*/
|
2003-02-04 14:48:54 +00:00
|
|
|
static u32_t
|
|
|
|
cond_wait(pthread_cond_t *cond, pthread_mutex_t *mutex, u32_t timeout)
|
2003-01-18 18:18:02 +00:00
|
|
|
{
|
|
|
|
int tdiff;
|
|
|
|
unsigned long sec, usec;
|
|
|
|
struct timeval rtime1, rtime2;
|
|
|
|
struct timespec ts;
|
|
|
|
struct timezone tz;
|
|
|
|
int retval;
|
|
|
|
|
2003-05-01 13:27:52 +00:00
|
|
|
if (timeout > 0) {
|
2003-01-18 18:18:02 +00:00
|
|
|
/* Get a timestamp and add the timeout value. */
|
|
|
|
gettimeofday(&rtime1, &tz);
|
|
|
|
sec = rtime1.tv_sec;
|
|
|
|
usec = rtime1.tv_usec;
|
|
|
|
usec += timeout % 1000 * 1000;
|
|
|
|
sec += (int)(timeout / 1000) + (int)(usec / 1000000);
|
|
|
|
usec = usec % 1000000;
|
|
|
|
ts.tv_nsec = usec * 1000;
|
|
|
|
ts.tv_sec = sec;
|
|
|
|
|
|
|
|
retval = pthread_cond_timedwait(cond, mutex, &ts);
|
|
|
|
|
2003-05-01 13:27:52 +00:00
|
|
|
if (retval == ETIMEDOUT) {
|
2003-05-19 14:45:02 +00:00
|
|
|
return SYS_ARCH_TIMEOUT;
|
2003-01-18 18:18:02 +00:00
|
|
|
} else {
|
|
|
|
/* Calculate for how long we waited for the cond. */
|
|
|
|
gettimeofday(&rtime2, &tz);
|
|
|
|
tdiff = (rtime2.tv_sec - rtime1.tv_sec) * 1000 +
|
2003-02-18 21:14:26 +00:00
|
|
|
(rtime2.tv_usec - rtime1.tv_usec) / 1000;
|
2003-01-18 18:18:02 +00:00
|
|
|
|
2003-05-01 13:27:52 +00:00
|
|
|
if (tdiff <= 0) {
|
2003-03-28 20:47:10 +00:00
|
|
|
return 0;
|
2003-01-18 18:18:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return tdiff;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
pthread_cond_wait(cond, mutex);
|
2003-05-19 14:45:02 +00:00
|
|
|
return SYS_ARCH_TIMEOUT;
|
2003-01-18 18:18:02 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
/*-----------------------------------------------------------------------------------*/
|
2003-02-04 14:48:54 +00:00
|
|
|
u32_t
|
|
|
|
sys_arch_sem_wait(struct sys_sem *sem, u32_t timeout)
|
2003-01-18 18:18:02 +00:00
|
|
|
{
|
2008-07-16 20:37:56 +00:00
|
|
|
u32_t time_needed = 0;
|
2003-01-18 18:18:02 +00:00
|
|
|
|
|
|
|
pthread_mutex_lock(&(sem->mutex));
|
2003-05-01 13:27:52 +00:00
|
|
|
while (sem->c <= 0) {
|
|
|
|
if (timeout > 0) {
|
2008-07-16 20:37:56 +00:00
|
|
|
time_needed = cond_wait(&(sem->cond), &(sem->mutex), timeout);
|
2003-01-18 18:18:02 +00:00
|
|
|
|
2008-07-16 20:37:56 +00:00
|
|
|
if (time_needed == SYS_ARCH_TIMEOUT) {
|
2003-02-18 21:14:26 +00:00
|
|
|
pthread_mutex_unlock(&(sem->mutex));
|
2003-05-19 14:45:02 +00:00
|
|
|
return SYS_ARCH_TIMEOUT;
|
2003-01-18 18:18:02 +00:00
|
|
|
}
|
|
|
|
/* pthread_mutex_unlock(&(sem->mutex));
|
2008-07-16 20:37:56 +00:00
|
|
|
return time_needed; */
|
2003-01-18 18:18:02 +00:00
|
|
|
} else {
|
|
|
|
cond_wait(&(sem->cond), &(sem->mutex), 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
sem->c--;
|
|
|
|
pthread_mutex_unlock(&(sem->mutex));
|
2008-07-16 20:37:56 +00:00
|
|
|
return time_needed;
|
2003-01-18 18:18:02 +00:00
|
|
|
}
|
|
|
|
/*-----------------------------------------------------------------------------------*/
|
|
|
|
void
|
|
|
|
sys_sem_signal(struct sys_sem *sem)
|
|
|
|
{
|
|
|
|
pthread_mutex_lock(&(sem->mutex));
|
|
|
|
sem->c++;
|
|
|
|
|
2003-05-01 13:27:52 +00:00
|
|
|
if (sem->c > 1) {
|
2003-01-18 18:18:02 +00:00
|
|
|
sem->c = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
pthread_cond_broadcast(&(sem->cond));
|
|
|
|
pthread_mutex_unlock(&(sem->mutex));
|
|
|
|
}
|
|
|
|
/*-----------------------------------------------------------------------------------*/
|
2008-05-30 11:28:28 +00:00
|
|
|
static void
|
|
|
|
sys_sem_free_internal(struct sys_sem *sem)
|
|
|
|
{
|
|
|
|
pthread_cond_destroy(&(sem->cond));
|
|
|
|
pthread_mutex_destroy(&(sem->mutex));
|
|
|
|
free(sem);
|
|
|
|
}
|
|
|
|
/*-----------------------------------------------------------------------------------*/
|
2003-01-18 18:18:02 +00:00
|
|
|
void
|
|
|
|
sys_sem_free(struct sys_sem *sem)
|
|
|
|
{
|
2003-05-01 13:27:52 +00:00
|
|
|
if (sem != SYS_SEM_NULL) {
|
2003-11-24 08:11:32 +00:00
|
|
|
#if SYS_STATS
|
2003-01-18 18:18:02 +00:00
|
|
|
lwip_stats.sys.sem.used--;
|
|
|
|
#endif /* SYS_STATS */
|
2008-05-30 11:28:28 +00:00
|
|
|
sys_sem_free_internal(sem);
|
2003-01-18 18:18:02 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
/*-----------------------------------------------------------------------------------*/
|
2009-03-25 11:01:00 +00:00
|
|
|
u32_t
|
2008-11-19 13:38:10 +00:00
|
|
|
sys_now(void)
|
2003-01-18 18:18:02 +00:00
|
|
|
{
|
|
|
|
struct timeval tv;
|
|
|
|
struct timezone tz;
|
2009-03-25 11:01:00 +00:00
|
|
|
u32_t sec, usec, msec;
|
2003-01-18 18:18:02 +00:00
|
|
|
gettimeofday(&tv, &tz);
|
|
|
|
|
2009-03-25 11:01:00 +00:00
|
|
|
sec = (u32_t)(tv.tv_sec - starttime.tv_sec);
|
|
|
|
usec = (u32_t)(tv.tv_usec - starttime.tv_usec);
|
2003-01-18 18:18:02 +00:00
|
|
|
msec = sec * 1000 + usec / 1000;
|
|
|
|
|
|
|
|
return msec;
|
|
|
|
}
|
|
|
|
/*-----------------------------------------------------------------------------------*/
|
|
|
|
void
|
|
|
|
sys_init()
|
|
|
|
{
|
|
|
|
struct timezone tz;
|
|
|
|
gettimeofday(&starttime, &tz);
|
|
|
|
}
|
|
|
|
/*-----------------------------------------------------------------------------------*/
|
|
|
|
struct sys_timeouts *
|
|
|
|
sys_arch_timeouts(void)
|
|
|
|
{
|
|
|
|
struct sys_thread *thread;
|
|
|
|
|
|
|
|
thread = current_thread();
|
|
|
|
return &thread->timeouts;
|
|
|
|
}
|
|
|
|
/*-----------------------------------------------------------------------------------*/
|
2003-02-18 21:14:26 +00:00
|
|
|
/** sys_prot_t sys_arch_protect(void)
|
|
|
|
|
|
|
|
This optional function does a "fast" critical region protection and returns
|
|
|
|
the previous protection level. This function is only called during very short
|
|
|
|
critical regions. An embedded system which supports ISR-based drivers might
|
|
|
|
want to implement this function by disabling interrupts. Task-based systems
|
|
|
|
might want to implement this by using a mutex or disabling tasking. This
|
|
|
|
function should support recursive calls from the same task or interrupt. In
|
|
|
|
other words, sys_arch_protect() could be called while already protected. In
|
|
|
|
that case the return value indicates that it is already protected.
|
|
|
|
|
|
|
|
sys_arch_protect() is only required if your port is supporting an operating
|
|
|
|
system.
|
|
|
|
*/
|
2003-02-12 16:38:57 +00:00
|
|
|
sys_prot_t
|
2003-02-04 22:52:01 +00:00
|
|
|
sys_arch_protect(void)
|
|
|
|
{
|
|
|
|
/* Note that for the UNIX port, we are using a lightweight mutex, and our
|
|
|
|
* own counter (which is locked by the mutex). The return code is not actually
|
|
|
|
* used. */
|
|
|
|
if (lwprot_thread != pthread_self())
|
|
|
|
{
|
|
|
|
/* We are locking the mutex where it has not been locked before *
|
|
|
|
* or is being locked by another thread */
|
|
|
|
pthread_mutex_lock(&lwprot_mutex);
|
|
|
|
lwprot_thread = pthread_self();
|
|
|
|
lwprot_count = 1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
/* It is already locked by THIS thread */
|
|
|
|
lwprot_count++;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
/*-----------------------------------------------------------------------------------*/
|
2003-02-18 21:14:26 +00:00
|
|
|
/** void sys_arch_unprotect(sys_prot_t pval)
|
|
|
|
|
|
|
|
This optional function does a "fast" set of critical region protection to the
|
|
|
|
value specified by pval. See the documentation for sys_arch_protect() for
|
|
|
|
more information. This function is only required if your port is supporting
|
|
|
|
an operating system.
|
|
|
|
*/
|
2003-02-04 22:52:01 +00:00
|
|
|
void
|
2003-02-12 16:38:57 +00:00
|
|
|
sys_arch_unprotect(sys_prot_t pval)
|
2003-02-04 22:52:01 +00:00
|
|
|
{
|
2008-07-16 20:37:56 +00:00
|
|
|
LWIP_UNUSED_ARG(pval);
|
2003-02-04 22:52:01 +00:00
|
|
|
if (lwprot_thread == pthread_self())
|
|
|
|
{
|
|
|
|
if (--lwprot_count == 0)
|
|
|
|
{
|
|
|
|
lwprot_thread = (pthread_t) 0xDEAD;
|
|
|
|
pthread_mutex_unlock(&lwprot_mutex);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*-----------------------------------------------------------------------------------*/
|
2003-06-19 11:42:56 +00:00
|
|
|
|
|
|
|
#ifndef MAX_JIFFY_OFFSET
|
2009-06-25 12:51:23 +00:00
|
|
|
#define MAX_JIFFY_OFFSET ((~0U >> 1)-1)
|
2003-06-19 11:42:56 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef HZ
|
|
|
|
#define HZ 100
|
|
|
|
#endif
|
|
|
|
|
2008-09-30 13:48:07 +00:00
|
|
|
u32_t
|
2003-06-19 11:42:56 +00:00
|
|
|
sys_jiffies(void)
|
|
|
|
{
|
|
|
|
struct timeval tv;
|
2008-06-19 15:31:12 +00:00
|
|
|
unsigned long sec;
|
|
|
|
long usec;
|
2003-06-19 11:42:56 +00:00
|
|
|
|
|
|
|
gettimeofday(&tv,NULL);
|
2008-06-19 15:31:12 +00:00
|
|
|
sec = tv.tv_sec - starttime.tv_sec;
|
|
|
|
usec = tv.tv_usec;
|
2003-06-19 11:42:56 +00:00
|
|
|
|
|
|
|
if (sec >= (MAX_JIFFY_OFFSET / HZ))
|
2009-06-25 12:51:23 +00:00
|
|
|
return MAX_JIFFY_OFFSET;
|
2003-06-19 11:42:56 +00:00
|
|
|
usec += 1000000L / HZ - 1;
|
|
|
|
usec /= 1000000L / HZ;
|
|
|
|
return HZ * sec + usec;
|
|
|
|
}
|
|
|
|
|
|
|
|
#if PPP_DEBUG
|
|
|
|
|
|
|
|
#include <stdarg.h>
|
|
|
|
|
|
|
|
void ppp_trace(int level, const char *format, ...)
|
|
|
|
{
|
|
|
|
va_list args;
|
|
|
|
|
|
|
|
(void)level;
|
|
|
|
va_start(args, format);
|
|
|
|
vprintf(format, args);
|
|
|
|
va_end(args);
|
|
|
|
}
|
|
|
|
#endif
|