亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? sys_arch.c

?? 最新版FreeRTOS, 包擴多種開發(fā)平臺的移植
?? C
字號:
/*
 * 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>
 *
 */

/* lwIP includes. */
#include "lwip/debug.h"
#include "lwip/def.h"
#include "lwip/sys.h"
#include "lwip/mem.h"

/* Message queue constants. */
#define archMESG_QUEUE_LENGTH	( 6 )
#define archPOST_BLOCK_TIME_MS	( ( unsigned portLONG ) 10000 )

struct timeoutlist 
{
	struct sys_timeouts timeouts;
	xTaskHandle pid;
};

/* This is the number of threads that can be started with sys_thread_new() */
#define SYS_THREAD_MAX 4

#define lwipTCP_STACK_SIZE			600
#define lwipBASIC_SERVER_STACK_SIZE	250

static struct timeoutlist timeoutlist[SYS_THREAD_MAX];
static u16_t nextthread = 0;
int intlevel = 0;


/*-----------------------------------------------------------------------------------*/
//  Creates an empty mailbox.
sys_mbox_t
sys_mbox_new(void)
{
	xQueueHandle mbox;

	mbox = xQueueCreate( archMESG_QUEUE_LENGTH, sizeof( void * ) );

	return mbox;
}

/*-----------------------------------------------------------------------------------*/
/*
  Deallocates a mailbox. If there are messages still present in the
  mailbox when the mailbox is deallocated, it is an indication of a
  programming error in lwIP and the developer should be notified.
*/
void
sys_mbox_free(sys_mbox_t mbox)
{
	if( uxQueueMessagesWaiting( mbox ) )
	{
		/* Line for breakpoint.  Should never break here! */
		__asm volatile ( "NOP" );
	}

	vQueueDelete( mbox ); 
}

/*-----------------------------------------------------------------------------------*/
//   Posts the "msg" to the mailbox.
void
sys_mbox_post(sys_mbox_t mbox, void *data)
{   
	xQueueSend( mbox, &data, ( portTickType ) ( archPOST_BLOCK_TIME_MS / portTICK_RATE_MS ) );
}


/*-----------------------------------------------------------------------------------*/
/*
  Blocks the thread until a message arrives in the mailbox, but does
  not block the thread longer than "timeout" milliseconds (similar to
  the sys_arch_sem_wait() function). The "msg" argument is a result
  parameter that is set by the function (i.e., by doing "*msg =
  ptr"). The "msg" parameter maybe NULL to indicate that the message
  should be dropped.

  The return values are the same as for the sys_arch_sem_wait() function:
  Number of milliseconds spent waiting or SYS_ARCH_TIMEOUT if there was a
  timeout.

  Note that a function with a similar name, sys_mbox_fetch(), is
  implemented by lwIP. 
*/
u32_t sys_arch_mbox_fetch(sys_mbox_t mbox, void **msg, u32_t timeout)
{
void *dummyptr;
portTickType StartTime, EndTime, Elapsed;

	StartTime = xTaskGetTickCount();

	if( msg == NULL )
	{
		msg = &dummyptr;
	}
		
	if(	timeout != 0 )
	{
		if(pdTRUE == xQueueReceive( mbox, &(*msg), timeout ) )
		{
			EndTime = xTaskGetTickCount();
			Elapsed = EndTime - StartTime;
			if( Elapsed == 0 )
			{
				Elapsed = 1;
			}
			return ( Elapsed );
		}
		else // timed out blocking for message
		{
			*msg = NULL;
			return SYS_ARCH_TIMEOUT;
		}
	}
	else // block forever for a message.
	{
		while( pdTRUE != xQueueReceive( mbox, &(*msg), 10000 ) ) // time is arbitrary
		{
			;
		}
		EndTime = xTaskGetTickCount();
		Elapsed = EndTime - StartTime;
		if( Elapsed == 0 )
		{
			Elapsed = 1;
		}
		return ( Elapsed ); // return time blocked TBD test	
	}
}

/*-----------------------------------------------------------------------------------*/
//  Creates and returns a new semaphore. The "count" argument specifies
//  the initial state of the semaphore. TBD finish and test
sys_sem_t
sys_sem_new(u8_t count)
{
	xSemaphoreHandle  xSemaphore;

	portENTER_CRITICAL();
	vSemaphoreCreateBinary( xSemaphore );
	if(count == 0)	// Means it can't be taken
	{
		xSemaphoreTake(xSemaphore,1);
	}
	portEXIT_CRITICAL();

	if( xSemaphore == NULL )
	{
		return NULL;	// TBD need assert
	}
	else
	{
		return xSemaphore;
	}
}

/*-----------------------------------------------------------------------------------*/
/*
  Blocks the thread while waiting for the semaphore to be
  signaled. If the "timeout" argument is non-zero, the thread should
  only be blocked for the specified time (measured in
  milliseconds).

  If the timeout argument is non-zero, the return value is the number of
  milliseconds spent waiting for the semaphore to be signaled. If the
  semaphore wasn't signaled within the specified time, the return value is
  SYS_ARCH_TIMEOUT. If the thread didn't have to wait for the semaphore
  (i.e., it was already signaled), the function may return zero.

  Notice that lwIP implements a function with a similar name,
  sys_sem_wait(), that uses the sys_arch_sem_wait() function.
*/
u32_t
sys_arch_sem_wait(sys_sem_t sem, u32_t timeout)
{
portTickType StartTime, EndTime, Elapsed;

	StartTime = xTaskGetTickCount();

	if(	timeout != 0)
	{
		if( xSemaphoreTake( sem, timeout ) == pdTRUE )
		{
			EndTime = xTaskGetTickCount();
			Elapsed = EndTime - StartTime;
			if( Elapsed == 0 )
			{
				Elapsed = 1;
			}
			return (Elapsed); // return time blocked TBD test	
		}
		else
		{
			return SYS_ARCH_TIMEOUT;
		}
	}
	else // must block without a timeout
	{
		while( xSemaphoreTake( sem, 10000 ) != pdTRUE )
		{
			;
		}
		EndTime = xTaskGetTickCount();
		Elapsed = EndTime - StartTime;
		if( Elapsed == 0 )
		{
			Elapsed = 1;
		}

		return ( Elapsed ); // return time blocked	
		 
	}
}

/*-----------------------------------------------------------------------------------*/
// Signals a semaphore
void
sys_sem_signal(sys_sem_t sem)
{
	xSemaphoreGive( sem );
}

/*-----------------------------------------------------------------------------------*/
// Deallocates a semaphore
void
sys_sem_free(sys_sem_t sem)
{
	vQueueDelete( sem ); 
}

/*-----------------------------------------------------------------------------------*/
// Initialize sys arch
void
sys_init(void)
{

	int i;

	// Initialize the the per-thread sys_timeouts structures
	// make sure there are no valid pids in the list
	for(i = 0; i < SYS_THREAD_MAX; i++)
	{
		timeoutlist[i].pid = 0;
	}

	// keep track of how many threads have been created
	nextthread = 0;
}

/*-----------------------------------------------------------------------------------*/
/*
  Returns a pointer to the per-thread sys_timeouts structure. In lwIP,
  each thread has a list of timeouts which is represented as a linked
  list of sys_timeout structures. The sys_timeouts structure holds a
  pointer to a linked list of timeouts. This function is called by
  the lwIP timeout scheduler and must not return a NULL value. 

  In a single threaded sys_arch implementation, this function will
  simply return a pointer to a global sys_timeouts variable stored in
  the sys_arch module.
*/
struct sys_timeouts *
sys_arch_timeouts(void)
{
int i;
xTaskHandle pid;
struct timeoutlist *tl;  

	pid = xTaskGetCurrentTaskHandle( ); 

	for(i = 0; i < nextthread; i++) 
	{
		tl = &timeoutlist[i];
		if(tl->pid == pid) 
		{
			return &(tl->timeouts);
		}
	}

	// Error
	return NULL;
}

/*-----------------------------------------------------------------------------------*/
/*-----------------------------------------------------------------------------------*/
// TBD 
/*-----------------------------------------------------------------------------------*/
/*
  Starts a new thread with priority "prio" that will begin its execution in the
  function "thread()". The "arg" argument will be passed as an argument to the
  thread() function. The id of the new thread is returned. Both the id and
  the priority are system dependent.
*/
sys_thread_t sys_thread_new(void (* thread)(void *arg), void *arg, int prio)
{
xTaskHandle CreatedTask;
int result;
static int iCall = 0;

	if( iCall == 0 )
	{
		/* The first time this is called we are creating the lwIP handler. */
		result = xTaskCreate( thread, ( signed portCHAR * ) "lwIP", lwipTCP_STACK_SIZE, arg, prio, &CreatedTask );
		iCall++;
	}
	else
	{
		result = xTaskCreate( thread, ( signed portCHAR * ) "WEBSvr", lwipBASIC_SERVER_STACK_SIZE, arg, prio, &CreatedTask );
	}

	// For each task created, store the task handle (pid) in the timers array.
	// This scheme doesn't allow for threads to be deleted
	timeoutlist[nextthread++].pid = CreatedTask;

	if(result == pdPASS)
	{
		return CreatedTask;
	}
	else
	{
		return NULL;
	}
}

/*
  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.
*/
sys_prot_t sys_arch_protect(void)
{
	vPortEnterCritical();
	return 1;
}

/*
  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.
*/
void sys_arch_unprotect(sys_prot_t pval)
{ 
	( void ) pval;
	vPortExitCritical();
}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
色哦色哦哦色天天综合| 日本一区二区三区视频视频| 色综合久久久久综合体桃花网| 高清shemale亚洲人妖| 国产一区二区视频在线| 国产精品99久久久久久久女警 | 日韩成人免费看| 亚洲电影第三页| 五月天网站亚洲| 午夜精品视频一区| 五月激情综合色| 日本不卡的三区四区五区| 麻豆国产欧美日韩综合精品二区| 午夜激情一区二区三区| 美女在线一区二区| 精品无人码麻豆乱码1区2区| 国产自产视频一区二区三区| 国产成人免费高清| 成人一级片网址| 一本大道综合伊人精品热热| 91传媒视频在线播放| 欧美精品v国产精品v日韩精品| 日韩欧美视频在线| 久久人人超碰精品| 最新不卡av在线| 天天影视涩香欲综合网| 国内精品视频一区二区三区八戒| 国产精品自拍三区| 99re成人精品视频| 欧美日韩亚洲不卡| 精品99999| 国产精品久久毛片a| 一个色在线综合| 麻豆精品久久精品色综合| 高清国产午夜精品久久久久久| 色综合久久综合网97色综合| 欧美一区2区视频在线观看| 久久久国产一区二区三区四区小说 | 欧美激情中文不卡| 一区二区在线观看视频| 美女mm1313爽爽久久久蜜臀| 国产成人福利片| 欧美网站大全在线观看| 欧美成人综合网站| 亚洲色图制服丝袜| 免费不卡在线视频| 成人不卡免费av| 欧美一区二区精品久久911| 国产日韩三级在线| 午夜精品免费在线观看| 国内精品自线一区二区三区视频| 97精品国产露脸对白| 日韩一区二区三区视频在线观看| 中文一区一区三区高中清不卡| 午夜精品免费在线观看| 成人免费看视频| 欧美一级欧美三级在线观看| 亚洲欧美在线视频| 日韩国产高清在线| 99国产精品久久久久| 91精品国产欧美一区二区18 | 激情图区综合网| 色偷偷成人一区二区三区91 | 亚洲人成网站色在线观看| 日本一不卡视频| 91视频观看视频| 久久影音资源网| 午夜激情久久久| 91在线小视频| 欧美国产精品一区二区| 蜜桃视频一区二区三区| 欧美中文字幕一区二区三区亚洲| 久久久另类综合| 日本大胆欧美人术艺术动态| 91一区二区三区在线播放| 精品国产髙清在线看国产毛片| 亚洲午夜国产一区99re久久| 成人精品鲁一区一区二区| 欧美大片在线观看一区二区| 一区二区成人在线观看| 99视频国产精品| 久久色在线视频| 蜜桃精品视频在线观看| 欧美三级资源在线| 一区二区免费在线| 色偷偷一区二区三区| 亚洲欧洲性图库| 成人av中文字幕| 国产精品热久久久久夜色精品三区| 蜜桃视频第一区免费观看| 欧美日韩二区三区| 亚洲一级片在线观看| 99精品国产91久久久久久| 中文字幕高清一区| 国产精品自拍网站| 久久久久国产精品麻豆| 国产精品一区二区免费不卡| 日韩免费一区二区| 极品尤物av久久免费看| 日韩欧美视频在线| 九九国产精品视频| 精品久久久网站| 国产一区二区h| 国产亚洲欧美一区在线观看| 国产综合色在线| 久久青草国产手机看片福利盒子 | 91福利在线导航| 一二三区精品福利视频| 欧美性xxxxx极品少妇| 亚洲在线观看免费| 欧美日韩国产影片| 日韩精品每日更新| 日韩一级高清毛片| 精品一区二区三区在线播放视频| 精品盗摄一区二区三区| 国产成人午夜精品5599| 国产精品乱码妇女bbbb| 99久久精品国产导航| 亚洲摸摸操操av| 欧美乱熟臀69xxxxxx| 秋霞电影一区二区| 久久精品无码一区二区三区| 国产成人在线视频网址| 亚洲欧美日韩在线不卡| 欧美日韩亚洲另类| 国产一区二区三区免费看| 日本一区二区免费在线观看视频| 99久久久精品| 午夜激情久久久| 久久免费偷拍视频| 99久久精品费精品国产一区二区| 亚洲免费观看高清完整版在线| 欧美精品在线视频| 精品一二三四区| 中文字幕欧美国产| 日本高清视频一区二区| 蜜桃av一区二区| 国产日韩成人精品| 欧美色电影在线| 国产精品综合在线视频| 亚洲精品成人a在线观看| 欧美一区二区视频在线观看| 国产乱妇无码大片在线观看| 18成人在线观看| 欧美一级在线免费| 丁香一区二区三区| 亚洲综合网站在线观看| 久久综合成人精品亚洲另类欧美| 99久久久精品免费观看国产蜜| 午夜精品久久久久久久蜜桃app| 精品免费一区二区三区| 一本色道久久综合亚洲91| 久久精品国产网站| 亚洲美腿欧美偷拍| 精品国产髙清在线看国产毛片 | 亚洲国产精品99久久久久久久久 | 久久久久久99精品| 欧美日韩在线播放三区四区| 国产在线精品一区二区不卡了| 亚洲蜜臀av乱码久久精品蜜桃| 欧美mv和日韩mv的网站| 一本一本大道香蕉久在线精品 | 一区二区三区精品视频| 欧美日韩国产综合一区二区| 国产精品亚洲第一区在线暖暖韩国 | 欧美三级一区二区| 国产成人久久精品77777最新版本| 亚洲网友自拍偷拍| 国产精品美女久久久久久2018| 91麻豆精品国产91久久久使用方法| 粉嫩av亚洲一区二区图片| 舔着乳尖日韩一区| 亚洲美女视频在线| 久久精品综合网| 日韩午夜激情av| 日本韩国精品在线| 欧美国产激情二区三区| 日本久久电影网| 成人性生交大片免费看中文 | 高清国产一区二区| 精品在线免费观看| 五月婷婷综合网| 最新高清无码专区| 久久精品视频免费| 日韩精品一区二区三区中文精品 | 一个色综合av| 国产精品热久久久久夜色精品三区 | 一本色道久久综合精品竹菊| 国产成人高清视频| 国产一区二区精品久久91| 久久国产精品色婷婷| 天天色综合天天| 午夜不卡av在线| 夜夜揉揉日日人人青青一国产精品| 中文字幕的久久| 国产精品丝袜在线| 国产日韩精品久久久| 国产午夜精品一区二区三区视频 | 精品国一区二区三区| 88在线观看91蜜桃国自产|