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

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

?? tasks.c

?? Modbus協議的源代碼 Modbus協議的源代碼、 Modbus協議的源代碼 Modbus協議的源代碼
?? C
?? 第 1 頁 / 共 4 頁
字號:
/*

	FreeRTOS.org V4.1.1 - Copyright (C) 2003-2006 Richard Barry.



	This file is part of the FreeRTOS.org distribution.



	FreeRTOS.org is free software; you can redistribute it and/or modify

	it under the terms of the GNU General Public License as published by

	the Free Software Foundation; either version 2 of the License, or

	(at your option) any later version.



	FreeRTOS.org is distributed in the hope that it will be useful,

	but WITHOUT ANY WARRANTY; without even the implied warranty of

	MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the

	GNU General Public License for more details.



	You should have received a copy of the GNU General Public License

	along with FreeRTOS.org; if not, write to the Free Software

	Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA



	A special exception to the GPL can be applied should you wish to distribute

	a combined work that includes FreeRTOS.org, without being obliged to provide

	the source code for any proprietary components.  See the licensing section

	of http://www.FreeRTOS.org for full details of how and when the exception

	can be applied.



	***************************************************************************

	See http://www.FreeRTOS.org for documentation, latest information, license

	and contact details.  Please ensure to read the configuration and relevant

	port sections of the online documentation.

	***************************************************************************

*/



/*

Changes from V1.00:

	

	+ Call to portRESTORE_CONTEXT has been removed.  The first context

	  switch is now performed within sPortStartScheduler().



Changes from V1.01:



	+ More use of 8bit data types.

	+ Function name prefixes changed where the data type returned has changed.

	+ configUSE_TRACE_FACILITY is no longer defined by default.



Changes from V1.2.0



	+ Introduced ucTopReadyPriority.  This tracks the highest priority ready

	  queue that contains a valid TCB and thus makes the context switch

	  slightly faster.



	+ prvAddTaskToReadyQueue() has been made a macro.



Changes from V1.2.6



	+ Added conditional compilation directives.

	+ Extended API.

	+ Rearranged function order.

	+ Creating a task now causes a context switch if the task being created

	  has a higher priority than the calling task - assuming the kernel is

	  running.

	+ vTaskDelete() now only causes a context switch if the calling task is

	  the task being deleted.



Changes from V2.0.0



	+ Allow the type of the tick count to be 16 or 32 bits.

	+ Introduce xPendingReadyList feature to allow the time interrupts have to

	  be disabled to be minimised.

	+ Remove the #if( INCLUDE_vTaskSuspendAll ) statements.  vTaskSuspendAll()

	  is now always included as it is used by the scheduler itself.



Changes from V2.1.0



	+ Bug fix - pxCurrentTCB is now initialised before the call to

	  prvInitializeTaskLists().  Previously pxCurrentTCB could be accessed

	  while null.



Changed from V2.1.1



	+ Change to where lStackSize is declared within sTaskCreate() to prevent

	  compiler warnings with 8051 port.



Changes from V2.2.0



	+ Explicit use of 'signed' qualifier on portCHAR types added.

	+ Changed odd calculation of initial pxTopOfStack value when

	  portSTACK_GROWTH < 0.

	+ Removed pcVersionNumber definition.



Changes from V2.5.3



	+ cTaskResumeAll() modified to ensure it can be called prior to the task

	  lists being initialised.



Changes from V2.5.5



	+ Added API function vTaskDelayUntil().

	+ Added INCLUDE_vTaskDelay conditional compilation.



Changes from V2.6.0



 	+ Updated the vWriteTraceToBuffer macro to always be 4 byte aligned so it

	  can be used on ARM architectures.

	+ tskMAX_TASK_NAME_LEN definition replaced with the port specific

	  configMAX_TASK_NAME_LEN definition.

	+ Removed the call to strcpy when copying across the task name into the

	  TCB.

	+ Added ucTasksDeleted variable to prevent vTaskSuspendAll() being called

	  too often in the idle task.



Changes between V3.0.0 and V2.6.1



	+ When resuming the scheduler a yield is performed if either a tick has

	  been missed, or a task is moved from the pending ready list into a ready

	  list.  Previously a yield was not performed on this second condition.

	+ Introduced the type portBASE_TYPE.  This necessitates several API

	  changes.

	+ Removed the sUsingPreemption variable.  The constant defined in

	  portmacro.h is now used directly.

	+ The idle task can now include an optional hook function - and no longer

	  completes its time slice if other tasks with equal priority to it are

	  ready to run.

	+ See the FreeRTOS.org documentation for more information on V2.x.x to

	  V3.x.x modifications.



Changes from V3.1.1



	+ Modified vTaskPrioritySet() and vTaskResume() to allow these functions to

	  be called while the scheduler is suspended.

	+ Corrected the task ordering within event lists.



Changes from V3.2.0



	+ Added function xTaskGetCurrentTaskHandle().



Changes from V3.2.4



	+ Changed the volatile declarations on some variables to reflect the 

	  changes to the list definitions.

	+ Changed the order of the TCB definition so there is commonality between

	  the task control block and a co-routine control block.

	+ Allow the scheduler to be started even if no tasks other than the idle

	  task has been created.  This allows co-routines to run even when no tasks

	  have been created.

	+ The need for a context switch is now signalled if a task woken by an 

	  event has a priority greater or equal to the currently running task.

	  Previously this was only greater than.



Changes from V4.0.0



	+ Added the xMissedYield handling.



Changes from V4.0.1



	+ The function vTaskList() now suspends the scheduler rather than disabling

	  interrupts during the creation of the task list.  

	+ Allow a task to delete itself by passing in its own handle.  Previously 

	  this could only be done by passing in NULL.

	+ The tick hook function is now called only within a tick isr.  Previously

	  it was also called when the tick function was called during the scheduler

	  unlocking process.



Changes from V4.0.3



	+ Extra checks have been placed in vTaskPrioritySet() to avoid unnecessary

	  yields.



Changed from V4.0.4



	+ Bug fix:  The 'value' of the event list item is updated when the priority

	  of a task is changed.  Previously only the priority of the TCB itself was

	  changed.

	+ When resuming a task a check is first made to see if the task is actually

	  suspended.

	+ vTaskPrioritySet() and vTaskResume() no longer use the event list item.

	  This has not been necessary since V4.0.1 when the xMissedYield handling

	  was added.

	+ Implement xTaskResumeFromISR().



Changes from V4.0.5



	+ Added utility functions and xOverflowCount variable to facilitate the

	  queue.c changes.

*/



#include <stdio.h>

#include <stdlib.h>

#include <string.h>



#include "FreeRTOS.h"

#include "task.h"



/*

 * Macro to define the amount of stack available to the idle task.

 */

#define tskIDLE_STACK_SIZE	configMINIMAL_STACK_SIZE





/*

 * Default a definitions for backwards compatibility with old

 * portmacro.h files.

 */

#ifndef configMAX_TASK_NAME_LEN

	#define configMAX_TASK_NAME_LEN 16

#endif



#ifndef INCLUDE_xTaskGetCurrentTaskHandle

	#define INCLUDE_xTaskGetCurrentTaskHandle 0

#endif



#ifndef configIDLE_SHOULD_YIELD

	#define configIDLE_SHOULD_YIELD		1

#endif



#if configMAX_TASK_NAME_LEN < 1

	#undef configMAX_TASK_NAME_LEN

	#define configMAX_TASK_NAME_LEN 1

#endif



#ifndef INCLUDE_xTaskResumeFromISR

	#define INCLUDE_xTaskResumeFromISR 1

#endif 



/*

 * Task control block.  A task control block (TCB) is allocated to each task,

 * and stores the context of the task.

 */

typedef struct tskTaskControlBlock

{

	volatile portSTACK_TYPE	*pxTopOfStack;		/*< Points to the location of the last item placed on the tasks stack.  THIS MUST BE THE FIRST MEMBER OF THE STRUCT. */

	xListItem				xGenericListItem;	/*< List item used to place the TCB in ready and blocked queues. */

	xListItem				xEventListItem;		/*< List item used to place the TCB in event lists. */

	unsigned portBASE_TYPE	uxPriority;			/*< The priority of the task where 0 is the lowest priority. */

	portSTACK_TYPE			*pxStack;			/*< Points to the start of the stack. */

	unsigned portBASE_TYPE	uxTCBNumber;		/*< This is used for tracing the scheduler and making debugging easier only. */

	signed portCHAR			pcTaskName[ configMAX_TASK_NAME_LEN ];/*< Descriptive name given to the task when created.  Facilitates debugging only. */

	unsigned portSHORT		usStackDepth;		/*< Total depth of the stack (when empty).  This is defined as the number of variables the stack can hold, not the number of bytes. */

} tskTCB;



/*lint -e956 */



tskTCB * volatile pxCurrentTCB = NULL;					



/* Lists for ready and blocked tasks. --------------------*/



static xList pxReadyTasksLists[ configMAX_PRIORITIES ];	/*< Prioritised ready tasks. */

static xList xDelayedTaskList1;							/*< Delayed tasks. */

static xList xDelayedTaskList2;							/*< Delayed tasks (two lists are used - one for delays that have overflowed the current tick count. */

static xList * volatile pxDelayedTaskList;				/*< Points to the delayed task list currently being used. */

static xList * volatile pxOverflowDelayedTaskList;		/*< Points to the delayed task list currently being used to hold tasks that have overflowed the current tick count. */

static xList xPendingReadyList;							/*< Tasks that have been readied while the scheduler was suspended.  They will be moved to the ready queue when the scheduler is resumed. */



#if ( INCLUDE_vTaskDelete == 1 )



	static volatile xList xTasksWaitingTermination;		/*< Tasks that have been deleted - but the their memory not yet freed. */

	static volatile unsigned portBASE_TYPE uxTasksDeleted = ( unsigned portBASE_TYPE ) 0;



#endif



#if ( INCLUDE_vTaskSuspend == 1 )



	static xList xSuspendedTaskList;					/*< Tasks that are currently suspended. */



#endif



/* File private variables. --------------------------------*/

static volatile unsigned portBASE_TYPE uxCurrentNumberOfTasks	= ( unsigned portBASE_TYPE ) 0;

static volatile portTickType xTickCount							= ( portTickType ) 0;

static unsigned portBASE_TYPE uxTopUsedPriority					= tskIDLE_PRIORITY;

static volatile unsigned portBASE_TYPE uxTopReadyPriority		= tskIDLE_PRIORITY;

static volatile signed portBASE_TYPE xSchedulerRunning			= pdFALSE;

static volatile unsigned portBASE_TYPE uxSchedulerSuspended		= ( unsigned portBASE_TYPE ) pdFALSE;

static volatile unsigned portBASE_TYPE uxMissedTicks			= ( unsigned portBASE_TYPE ) 0;

static volatile portBASE_TYPE xMissedYield						= ( portBASE_TYPE ) pdFALSE;

static volatile portBASE_TYPE xNumOfOverflows					= ( portBASE_TYPE ) 0;

/* Debugging and trace facilities private variables and macros. ------------*/



/*

 * The value used to fill the stack of a task when the task is created.  This

 * is used purely for checking the high water mark for tasks.

 */

#define tskSTACK_FILL_BYTE	( 0xa5 )



/*

 * Macros used by vListTask to indicate which state a task is in.

 */

#define tskBLOCKED_CHAR		( ( signed portCHAR ) 'B' )

#define tskREADY_CHAR		( ( signed portCHAR ) 'R' )

#define tskDELETED_CHAR		( ( signed portCHAR ) 'D' )

#define tskSUSPENDED_CHAR	( ( signed portCHAR ) 'S' )



/*

 * Macros and private variables used by the trace facility.

 */

#if ( configUSE_TRACE_FACILITY == 1 )



	#define tskSIZE_OF_EACH_TRACE_LINE			( ( unsigned portLONG ) ( sizeof( unsigned portLONG ) + sizeof( unsigned portLONG ) ) )

	static volatile signed portCHAR * volatile pcTraceBuffer;

	static signed portCHAR *pcTraceBufferStart;

	static signed portCHAR *pcTraceBufferEnd;

	static signed portBASE_TYPE xTracing = pdFALSE;



#endif



/*

 * Macro that writes a trace of scheduler activity to a buffer.  This trace

 * shows which task is running when and is very useful as a debugging tool.

 * As this macro is called each context switch it is a good idea to undefine

 * it if not using the facility.

 */

#if ( configUSE_TRACE_FACILITY == 1 )



	#define vWriteTraceToBuffer()																	\

	{																								\

		if( xTracing )																				\

		{																							\

			static unsigned portBASE_TYPE uxPreviousTask = 255;										\

																									\

			if( uxPreviousTask != pxCurrentTCB->uxTCBNumber )										\

			{																						\

				if( ( pcTraceBuffer + tskSIZE_OF_EACH_TRACE_LINE ) < pcTraceBufferEnd )				\

				{																					\

					uxPreviousTask = pxCurrentTCB->uxTCBNumber;										\

					*( unsigned portLONG * ) pcTraceBuffer = ( unsigned portLONG ) xTickCount;		\

					pcTraceBuffer += sizeof( unsigned portLONG );									\

					*( unsigned portLONG * ) pcTraceBuffer = ( unsigned portLONG ) uxPreviousTask;	\

					pcTraceBuffer += sizeof( unsigned portLONG );									\

				}																					\

				else																				\

				{																					\

					xTracing = pdFALSE;																\

				}																					\

			}																						\

		}																							\

	}



#else



	#define vWriteTraceToBuffer()



#endif





/*

 * Place the task represented by pxTCB into the appropriate ready queue for

 * the task.  It is inserted at the end of the list.  One quirk of this is

 * that if the task being inserted is at the same priority as the currently

 * executing task, then it will only be rescheduled after the currently

 * executing task has been rescheduled.

 */

#define prvAddTaskToReadyQueue( pxTCB )																			\

{																												\

	if( pxTCB->uxPriority > uxTopReadyPriority )																\

	{																											\

		uxTopReadyPriority = pxTCB->uxPriority;																	\

	}																											\

	vListInsertEnd( ( xList * ) &( pxReadyTasksLists[ pxTCB->uxPriority ] ), &( pxTCB->xGenericListItem ) );	\

}		



/*

 * Macro that looks at the list of tasks that are currently delayed to see if

 * any require waking.

 *

 * Tasks are stored in the queue in the order of their wake time - meaning

 * once one tasks has been found whose timer has not expired we need not look

 * any further down the list.

 */

#define prvCheckDelayedTasks()																						\

{																													\

register tskTCB *pxTCB;																								\

																													\

	while( ( pxTCB = ( tskTCB * ) listGET_OWNER_OF_HEAD_ENTRY( pxDelayedTaskList ) ) != NULL )						\

	{																												\

		if( xTickCount < listGET_LIST_ITEM_VALUE( &( pxTCB->xGenericListItem ) ) )									\

		{																											\

			break;																									\

		}																											\

		vListRemove( &( pxTCB->xGenericListItem ) );																\

		/* Is the task waiting on an event also? */																	\

		if( pxTCB->xEventListItem.pvContainer )																		\

		{																											\

			vListRemove( &( pxTCB->xEventListItem ) );																\

		}																											\

		prvAddTaskToReadyQueue( pxTCB );														\

	}																												\

}																							



/*

 * Several functions take an xTaskHandle parameter that can optionally be NULL,

 * where NULL is used to indicate that the handle of the currently executing

 * task should be used in place of the parameter.  This macro simply checks to

 * see if the parameter is NULL and returns a pointer to the appropriate TCB.

 */

#define prvGetTCBFromHandle( pxHandle ) ( ( pxHandle == NULL ) ? ( tskTCB * ) pxCurrentTCB : ( tskTCB * ) pxHandle )





/* File private functions. --------------------------------*/



/*

 * Utility to ready a TCB for a given task.  Mainly just copies the parameters

 * into the TCB structure.

 */

static void prvInitialiseTCBVariables( tskTCB *pxTCB, unsigned portSHORT usStackDepth, const signed portCHAR * const pcName, unsigned portBASE_TYPE uxPriority );



/*

 * Utility to ready all the lists used by the scheduler.  This is called

 * automatically upon the creation of the first task.

 */

static void prvInitialiseTaskLists( void );



/*

 * The idle task, which as all tasks is implemented as a never ending loop.

 * The idle task is automatically created and added to the ready lists upon

 * creation of the first user task.

 *

 * The portTASK_FUNCTION_PROTO() macro is used to allow port/compiler specific

 * language extensions.  The equivalent prototype for this function is:

 *

 * void prvIdleTask( void *pvParameters );

 *

 */

static portTASK_FUNCTION_PROTO( prvIdleTask, pvParameters );



/*

 * Utility to free all memory allocated by the scheduler to hold a TCB,

 * including the stack pointed to by the TCB.

 *

 * This does not free memory allocated by the task itself (i.e. memory

 * allocated by calls to pvPortMalloc from within the tasks application code).

 */

#if ( ( INCLUDE_vTaskDelete == 1 ) || ( INCLUDE_vTaskCleanUpResources == 1 ) )

	static void prvDeleteTCB( tskTCB *pxTCB );

#endif



/*

 * Used only by the idle task.  This checks to see if anything has been placed

 * in the list of tasks waiting to be deleted.  If so the task is cleaned up

 * and its TCB deleted.

 */

static void prvCheckTasksWaitingTermination( void );



/*

 * Allocates memory from the heap for a TCB and associated stack.  Checks the

 * allocation was successful.

 */

static tskTCB *prvAllocateTCBAndStack( unsigned portSHORT usStackDepth );



/*

 * Called from vTaskList.  vListTasks details all the tasks currently under

 * control of the scheduler.  The tasks may be in one of a number of lists.

 * prvListTaskWithinSingleList accepts a list and details the tasks from

 * within just that list.

 *

 * THIS FUNCTION IS INTENDED FOR DEBUGGING ONLY, AND SHOULD NOT BE CALLED FROM

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美少妇bbb| 欧美激情在线免费观看| 精品第一国产综合精品aⅴ| 久久久久久免费毛片精品| 亚洲欧美激情插| 久久国产乱子精品免费女| 成人的网站免费观看| 欧美一级二级在线观看| 亚洲欧美日韩人成在线播放| 国产毛片一区二区| 91麻豆精品91久久久久久清纯| 国产精品理论片| 精品在线观看免费| 欧美日韩亚洲综合在线| 国产精品美女视频| 国产乱人伦偷精品视频不卡| 日韩一区二区电影在线| 亚洲va欧美va国产va天堂影院| 国产成人精品亚洲日本在线桃色 | 亚洲精品少妇30p| 国产成人在线色| 欧美va亚洲va国产综合| 午夜精品一区二区三区三上悠亚| av中文字幕一区| 国产精品色在线观看| 国产精品影视天天线| 日韩一二三四区| 青青草国产精品97视觉盛宴| 欧美人与z0zoxxxx视频| 亚洲va欧美va国产va天堂影院| 日本韩国一区二区三区| 亚洲欧美偷拍卡通变态| 色综合色综合色综合| 亚洲欧美日韩国产综合在线| 91性感美女视频| 亚洲精品美腿丝袜| 欧美这里有精品| 亚洲一二三四区不卡| 欧美在线观看禁18| 午夜成人免费电影| 欧美一区二区三区小说| 日本aⅴ免费视频一区二区三区 | 亚洲国产另类精品专区| 在线精品视频免费观看| 午夜精品久久久久影视| 日韩亚洲欧美成人一区| 精品一区二区三区香蕉蜜桃| 精品999久久久| 成人av在线一区二区三区| 亚洲免费观看高清完整版在线| 91老师片黄在线观看| 亚洲国产综合在线| 日韩免费高清视频| 国产毛片精品国产一区二区三区| 久久先锋影音av鲁色资源网| 成人av网址在线观看| 一级精品视频在线观看宜春院| 欧洲av一区二区嗯嗯嗯啊| 日韩精品每日更新| 国产亚洲欧洲一区高清在线观看| 白白色 亚洲乱淫| 亚洲大片精品永久免费| 精品少妇一区二区三区在线播放 | 精品国产免费人成电影在线观看四季| 精品一区二区在线视频| 日本一区二区三区dvd视频在线 | 国产乱淫av一区二区三区| 亚洲欧洲性图库| 67194成人在线观看| 国产伦精一区二区三区| 一区二区成人在线| 久久精品一区二区| 在线精品亚洲一区二区不卡| 九九久久精品视频| 亚洲自拍偷拍麻豆| 久久蜜桃av一区精品变态类天堂 | 国产精品另类一区| 91精品国产色综合久久不卡电影| 国产高清不卡二三区| 亚洲bt欧美bt精品| 国产精品少妇自拍| 欧美videos中文字幕| 91传媒视频在线播放| 国产成人精品影视| 美女高潮久久久| 亚洲五月六月丁香激情| 国产女主播视频一区二区| 777久久久精品| 91美女片黄在线| 国产毛片一区二区| 蜜桃精品视频在线观看| 亚洲国产精品一区二区www在线| 国产视频一区二区在线观看| 9191国产精品| 91高清在线观看| 懂色av一区二区夜夜嗨| 经典三级在线一区| 日韩电影在线免费看| 日韩毛片一二三区| 中文字幕二三区不卡| 精品久久久久久久久久久久包黑料| 欧美三级电影精品| 91高清视频在线| 色综合天天综合在线视频| 粉嫩欧美一区二区三区高清影视| 麻豆精品视频在线| 免费视频一区二区| 欧美96一区二区免费视频| 亚洲成人自拍偷拍| 亚洲一区av在线| 亚洲国产一区视频| 一区二区三区国产| 亚洲123区在线观看| 亚洲曰韩产成在线| 亚洲国产精品影院| 亚洲一本大道在线| 图片区小说区国产精品视频| 亚洲成人免费在线观看| 亚洲一区二区三区四区中文字幕| 亚洲精品成人悠悠色影视| 亚洲精品美国一| 一区二区三区毛片| 午夜精品福利一区二区三区av| 亚洲精品国产一区二区三区四区在线 | 国产亚洲一本大道中文在线| 精品国产乱码久久久久久闺蜜| 日韩美一区二区三区| 欧美mv日韩mv国产网站app| 精品三级av在线| 久久久精品免费网站| 国产精品美女久久久久久2018| 国产精品免费观看视频| 一区二区三区中文字幕电影| 亚洲午夜激情av| 欧美a级理论片| 国产乱子伦视频一区二区三区| 成人午夜在线播放| 色国产精品一区在线观看| 欧美日本国产一区| 精品国产乱码久久久久久免费| 中文字幕乱码一区二区免费| 亚洲激情成人在线| 日韩**一区毛片| 国产精品一线二线三线精华| 91免费视频大全| 91精品久久久久久蜜臀| 国产午夜精品一区二区三区嫩草| 亚洲同性同志一二三专区| 午夜激情久久久| 国产精品99久久久久久似苏梦涵 | 91在线视频网址| 欧美日韩夫妻久久| 久久精品在线观看| 亚洲国产另类av| 国产一二精品视频| 欧美日韩另类一区| 久久人人97超碰com| 一区二区三区欧美日| 狠狠v欧美v日韩v亚洲ⅴ| 色欧美88888久久久久久影院| 日韩欧美中文字幕一区| 国产精品黄色在线观看| 免费看日韩精品| 91麻豆高清视频| 久久久久久久免费视频了| 亚洲无人区一区| 不卡视频免费播放| 日韩午夜三级在线| 一区二区三区蜜桃| 国产69精品久久99不卡| 欧美一级在线视频| 亚洲综合视频在线观看| 丁香婷婷综合色啪| 日韩免费观看高清完整版在线观看| 亚洲欧美日韩在线| 粉嫩嫩av羞羞动漫久久久| 日韩三级视频在线看| 亚洲国产日产av| 91美女片黄在线观看91美女| 久久久不卡网国产精品二区| 日韩av一级电影| 欧美色成人综合| 亚洲色图一区二区三区| 成人午夜电影网站| 久久欧美一区二区| 欧美a一区二区| 欧美精品 日韩| 亚洲电影一级黄| 色哦色哦哦色天天综合| 国产精品第一页第二页第三页| 国产精品一级片在线观看| 精品噜噜噜噜久久久久久久久试看 | 久久久久久久久久看片| 久久精品免费观看| 日韩你懂的在线播放| 看片网站欧美日韩| 欧美精品日日鲁夜夜添| 香蕉成人啪国产精品视频综合网 | 精品电影一区二区| 国内精品写真在线观看|