青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品

那誰的技術(shù)博客

感興趣領(lǐng)域:高性能服務(wù)器編程,存儲(chǔ),算法,Linux內(nèi)核
隨筆 - 210, 文章 - 0, 評(píng)論 - 1183, 引用 - 0
數(shù)據(jù)加載中……

Linux下面的線程鎖,條件變量以及信號(hào)量的使用

一) 線程鎖
1) 只能用于"鎖"住臨界代碼區(qū)域
2) 一個(gè)線程加的鎖必須由該線程解鎖.

鎖幾乎是我們學(xué)習(xí)同步時(shí)最開始接觸到的一個(gè)策略,也是最簡(jiǎn)單, 最直白的策略.

二) 條件變量,與鎖不同, 條件變量用于等待某個(gè)條件被觸發(fā)
1) 大體使用的偽碼:

// 線程一代碼
pthread_mutex_lock(&mutex);
// 設(shè)置條件為true
pthread_cond_signal(&cond);
pthread_mutex_unlock(&mutex);

// 線程二代碼
pthread_mutex_lock(&mutex);
while (條件為false)
    pthread_cond_wait(&cond, &mutex);
修改該條件
pthread_mutex_unlock(&mutex);

需要注意幾點(diǎn):
1) 第二段代碼之所以在pthread_cond_wait外面包含一個(gè)while循環(huán)不停測(cè)試條件是否成立的原因是, 在pthread_cond_wait被喚醒的時(shí)候可能該條件已經(jīng)不成立.UNPV2對(duì)這個(gè)的描述是:"Notice that when pthread_cond_wait returns, we always test the condition again, because spurious wakeups can occur: a wakeup when the desired condition is still not true.".

2) pthread_cond_wait調(diào)用必須和某一個(gè)mutex一起調(diào)用, 這個(gè)mutex是在外部進(jìn)行加鎖的mutex, 在調(diào)用pthread_cond_wait時(shí), 內(nèi)部的實(shí)現(xiàn)將首先將這個(gè)mutex解鎖, 然后等待條件變量被喚醒, 如果沒有被喚醒, 該線程將一直休眠, 也就是說, 該線程將一直阻塞在這個(gè)pthread_cond_wait調(diào)用中, 而當(dāng)此線程被喚醒時(shí), 將自動(dòng)將這個(gè)mutex加鎖.
man文檔中對(duì)這部分的說明是:
pthread_cond_wait atomically unlocks the mutex (as per pthread_unlock_mutex) and waits for the condition variable cond to  be  signaled.  The thread execution is suspended and does not consume any CPU time until the condition variable is
signaled. The mutex must be locked by the calling thread on entrance to pthread_cond_wait.  Before  returning  to  the calling thread, pthread_cond_wait re-acquires mutex (as per pthread_lock_mutex).
也就是說pthread_cond_wait實(shí)際上可以看作是以下幾個(gè)動(dòng)作的合體:
解鎖線程鎖
等待條件為true
加鎖線程鎖.

這里是使用條件變量的經(jīng)典例子:
http://m.shnenglu.com/CppExplore/archive/2008/03/20/44949.html
之所以使用兩個(gè)條件變量, 是因?yàn)橛袃煞N情況需要進(jìn)行保護(hù),使用數(shù)組實(shí)現(xiàn)循環(huán)隊(duì)列,因此一個(gè)條件是在getq函數(shù)中判斷讀寫指針相同且可讀數(shù)據(jù)計(jì)數(shù)為0,此時(shí)隊(duì)列為空沒有數(shù)據(jù)可讀,因此獲取新數(shù)據(jù)的條件變量就一直等待,另一個(gè)條件是讀寫指針相同且可讀數(shù)據(jù)計(jì)數(shù)大于0,此時(shí)隊(duì)列滿了不能再添加數(shù)據(jù), 因此添加新數(shù)據(jù)的條件變量就一直等待,而nEmptyThreadNum和nFullThreadNum則是計(jì)數(shù), 只有這個(gè)計(jì)數(shù)大于0時(shí)才會(huì)喚醒相應(yīng)的條件變量,這樣可以減少調(diào)用pthread_cond_signal的次數(shù).
為了在下面的敘述方便, 我將這段代碼整理在下面, 是一個(gè)可以編譯運(yùn)行的代碼,但是注意需要在編譯時(shí)加上-pthread鏈接線程庫(kù):
#include <pthread.h>
#include 
<stdio.h>
#include 
<unistd.h>
#include 
<stdlib.h>

class CThreadQueue
{
public:
    CThreadQueue(
int queueSize=1024):
        sizeQueue(queueSize),lput(
0),lget(0),nFullThread(0),nEmptyThread(0),nData(0)
    {
        pthread_mutex_init(
&mux,0);
        pthread_cond_init(
&condGet,0);
        pthread_cond_init(
&condPut,0);
        buffer
=new void *[sizeQueue];
    }
    
virtual ~CThreadQueue()
    {
        delete[] buffer;
    }
    
void * getq()
    {
        
void *data;
        pthread_mutex_lock(
&mux);
        /*
         此 處循環(huán)判斷的原因如下:假設(shè)2個(gè)線程在getq阻塞,然后兩者都被激活,而其中一個(gè)線程運(yùn)行比較塊,快速消耗了2個(gè)數(shù)據(jù),另一個(gè)線程醒來的時(shí)候已經(jīng)沒有新 數(shù)據(jù)可以消耗了。另一點(diǎn),man pthread_cond_wait可以看到,該函數(shù)可以被信號(hào)中斷返回,此時(shí)返回EINTR。為避免以上任何一點(diǎn),都必須醒來后再次判斷睡眠條件。更 正:pthread_cond_wait是信號(hào)安全的系統(tǒng)調(diào)用,不會(huì)被信號(hào)中斷。
        */
        while(lget==lput&&nData==0)
        {
            nEmptyThread
++;
            pthread_cond_wait(
&condGet,&mux);
            nEmptyThread
--;     
        }

        data
=buffer[lget++];
        nData
--;
        
if(lget==sizeQueue)
        {
            lget
=0;
        }
        
if(nFullThread) //必要時(shí)才進(jìn)行signal操作,勿總是signal
        {
            pthread_cond_signal(
&condPut);    
        }
        pthread_mutex_unlock(
&mux);
        
return data;
    }
    
void putq(void *data)
    {
        pthread_mutex_lock(
&mux);
        
while(lput==lget&&nData)
        { 
            nFullThread
++;
            pthread_cond_wait(
&condPut,&mux);
            nFullThread
--;
        }
        buffer[lput
++]=data;
        nData
++;
        
if(lput==sizeQueue)
        {
            lput
=0;
        }
        
if(nEmptyThread) //必要時(shí)才進(jìn)行signal操作,勿總是signal
        {
            pthread_cond_signal(
&condGet);
        }
        pthread_mutex_unlock(
&mux);
    }
private:
    pthread_mutex_t mux;
    pthread_cond_t condGet;
    pthread_cond_t condPut;

    
void * * buffer;    //循環(huán)消息隊(duì)列
    int sizeQueue;        //隊(duì)列大小
    int lput;        //location put  放數(shù)據(jù)的指針偏移
    int lget;        //location get  取數(shù)據(jù)的指針偏移
    int nFullThread;    //隊(duì)列滿,阻塞在putq處的線程數(shù)
    int nEmptyThread;    //隊(duì)列空,阻塞在getq處的線程數(shù)
    int nData;        //隊(duì)列中的消息個(gè)數(shù),主要用來判斷隊(duì)列空還是滿
};

CThreadQueue queue;
//使用的時(shí)候給出稍大的CThreadQueue初始化參數(shù),可以減少進(jìn)入內(nèi)核態(tài)的操作。

void * produce(void * arg)
{
    
int i=0;
    pthread_detach(pthread_self());
    
while(i++<100)
    {
        queue.putq((
void *)i);
    }
}

void *consume(void *arg)
{
    
int data;
    
while(1)
    {
        data
=(int)(queue.getq());
        printf(
"data=%d\n",data);
    }
}

int main()
{    
    pthread_t pid;
    
int i=0;

    
while(i++<3)
        pthread_create(
&pid,0,produce,0);
    i
=0;
    
while(i++<3)
        pthread_create(
&pid,0,consume,0);
    sleep(
5);

    
return 0;
}


三) 信號(hào)量
信號(hào)量既可以作為二值計(jì)數(shù)器(即0,1),也可以作為資源計(jì)數(shù)器.
主要是兩個(gè)函數(shù):
sem_wait()  decrements  (locks)  the semaphore pointed to by sem.  If the semaphore's value is greater than zero, then
the decrement proceeds, and the function returns, immediately.  If the semaphore currently has the  value  zero,  then
the  call  blocks  until  either  it  becomes possible to perform the decrement (i.e., the semaphore value rises above
zero), or a signal handler interrupts the call.

sem_post()  increments  (unlocks)  the  semaphore  pointed  to  by sem.  If the semaphore's value consequently becomes
greater than zero, then another process or thread blocked in a sem_wait(3) call will be woken up and proceed  to  lock
the semaphore.

而函數(shù)int sem_getvalue(sem_t *sem, int *sval);則用于獲取信號(hào)量當(dāng)前的計(jì)數(shù).

可以用信號(hào)量模擬鎖和條件變量:
1) 鎖,在同一個(gè)線程內(nèi)同時(shí)對(duì)某個(gè)信號(hào)量先調(diào)用sem_wait再調(diào)用sem_post, 兩個(gè)函數(shù)調(diào)用其中的區(qū)域就是所要保護(hù)的臨界區(qū)代碼了,這個(gè)時(shí)候其實(shí)信號(hào)量是作為二值計(jì)數(shù)器來使用的.不過在此之前要初始化該信號(hào)量計(jì)數(shù)為1,見下面例子中的代碼.
2) 條件變量,在某個(gè)線程中調(diào)用sem_wait, 而在另一個(gè)線程中調(diào)用sem_post.

我們將上面例子中的線程鎖和條件變量都改成用信號(hào)量實(shí)現(xiàn)以說明信號(hào)量如何模擬兩者:
#include <pthread.h>
#include 
<stdio.h>
#include 
<unistd.h>
#include 
<stdlib.h>
#include 
<fcntl.h>
#include 
<sys/stat.h>
#include 
<semaphore.h>
#include 
<errno.h>
#include 
<string.h>

class CThreadQueue
{
public:
    CThreadQueue(
int queueSize=1024):
        sizeQueue(queueSize),lput(
0),lget(0),nFullThread(0),nEmptyThread(0),nData(0)
    {
        
//pthread_mutex_init(&mux,0);
        mux = sem_open("mutex", O_RDWR | O_CREAT);
        
get = sem_open("get", O_RDWR | O_CREAT);
        put 
= sem_open("put", O_RDWR | O_CREAT);
    
        sem_init(mux, 
01);

        buffer
=new void *[sizeQueue];
    }
    
virtual ~CThreadQueue()
    {
        delete[] buffer;
        sem_unlink(
"mutex");
        sem_unlink(
"get");
        sem_unlink(
"put");
    }
    
void * getq()
    {
        
void *data;

        
//pthread_mutex_lock(&mux);
        sem_wait(mux);

        
while(lget==lput&&nData==0)
        {
            nEmptyThread
++;
            
//pthread_cond_wait(&condGet,&mux);
            sem_wait(get);
            nEmptyThread
--;     
        }

        data
=buffer[lget++];
        nData
--;
        
if(lget==sizeQueue)
        {
            lget
=0;
        }
        
if(nFullThread) //必要時(shí)才進(jìn)行signal操作,勿總是signal
        {
            
//pthread_cond_signal(&condPut);    
            sem_post(put);
        }

        
//pthread_mutex_unlock(&mux);
        sem_post(mux);

        
return data;
    }
    
void putq(void *data)
    {
        
//pthread_mutex_lock(&mux);
        sem_wait(mux);

        
while(lput==lget&&nData)
        { 
            nFullThread
++;
            
//pthread_cond_wait(&condPut,&mux);
            sem_wait(put);
            nFullThread
--;
        }
        buffer[lput
++]=data;
        nData
++;
        
if(lput==sizeQueue)
        {
            lput
=0;
        }
        
if(nEmptyThread)
        {
            
//pthread_cond_signal(&condGet);
            sem_post(get);
        }

        
//pthread_mutex_unlock(&mux);
        sem_post(mux);
    }
private:
    
//pthread_mutex_t mux;
    sem_t* mux;
    
//pthread_cond_t condGet;
    
//pthread_cond_t condPut;
    sem_t* get;
    sem_t
* put;

    
void * * buffer;    //循環(huán)消息隊(duì)列
    int sizeQueue;        //隊(duì)列大小
    int lput;        //location put  放數(shù)據(jù)的指針偏移
    int lget;        //location get  取數(shù)據(jù)的指針偏移
    int nFullThread;    //隊(duì)列滿,阻塞在putq處的線程數(shù)
    int nEmptyThread;    //隊(duì)列空,阻塞在getq處的線程數(shù)
    int nData;        //隊(duì)列中的消息個(gè)數(shù),主要用來判斷隊(duì)列空還是滿
};

CThreadQueue queue;
//使用的時(shí)候給出稍大的CThreadQueue初始化參數(shù),可以減少進(jìn)入內(nèi)核態(tài)的操作。

void * produce(void * arg)
{
    
int i=0;
    pthread_detach(pthread_self());
    
while(i++<100)
    {
        queue.putq((
void *)i);
    }
}

void *consume(void *arg)
{
    
int data;
    
while(1)
    {
        data
=(int)(queue.getq());
        printf(
"data=%d\n",data);
    }
}

int main()
{    
    pthread_t pid;
    
int i=0;

    
while(i++<3)
        pthread_create(
&pid,0,produce,0);
    i
=0;
    
while(i++<3)
        pthread_create(
&pid,0,consume,0);
    sleep(
5);

    
return 0;
}


不過, 信號(hào)量除了可以作為二值計(jì)數(shù)器用于模擬線程鎖和條件變量之外, 還有比它們更加強(qiáng)大的功能, 信號(hào)量可以用做資源計(jì)數(shù)器, 也就是說初始化信號(hào)量的值為某個(gè)資源當(dāng)前可用的數(shù)量, 使用了一個(gè)之后遞減, 歸還了一個(gè)之后遞增, 將前面的例子用資源計(jì)數(shù)器的形式再次改寫如下,注意在初始化的時(shí)候要將資源計(jì)數(shù)進(jìn)行初始化, 在下面代碼中的構(gòu)造函數(shù)中將put初始化為隊(duì)列的最大數(shù)量, 而get為0:
#include <pthread.h>
#include 
<stdio.h>
#include 
<unistd.h>
#include 
<stdlib.h>
#include 
<fcntl.h>
#include 
<sys/stat.h>
#include 
<semaphore.h>

class CThreadQueue
{
public:
    CThreadQueue(
int queueSize=1024):
        sizeQueue(queueSize),lput(
0),lget(0)
    {
        pthread_mutex_init(
&mux,0);
        
get = sem_open("get", O_RDWR | O_CREAT);
        put 
= sem_open("put", O_RDWR | O_CREAT);

        sem_init(
get00);
        sem_init(put, 
0, sizeQueue);

        buffer
=new void *[sizeQueue];
    }
    
virtual ~CThreadQueue()
    {
        sem_unlink(
"get");
        sem_unlink(
"put");
        delete[] buffer;
    }
    
void * getq()
    {
        sem_wait(
get);

        
void *data;

        pthread_mutex_lock(
&mux);

        
/*
        while(lget==lput&&nData==0)
        {
            nEmptyThread++;
            //pthread_cond_wait(&condGet,&mux);
            nEmptyThread--;     
        }
        
*/

        data
=buffer[lget++];
        
//nData--;
        if(lget==sizeQueue)
        {
            lget
=0;
        }
        
/*
        if(nFullThread) //必要時(shí)才進(jìn)行signal操作,勿總是signal
        {
            //pthread_cond_signal(&condPut);    
            sem_post(put);
        }
        
*/
        pthread_mutex_unlock(
&mux);

        sem_post(put);

        
return data;
    }
    
void putq(void *data)
    {
        sem_wait(put);

        pthread_mutex_lock(
&mux);

        
/*
        while(lput==lget&&nData)
        { 
            nFullThread++;
            //pthread_cond_wait(&condPut,&mux);
            sem_wait(put);
            nFullThread--;
        }
        
*/

        buffer[lput
++]=data;
        
//nData++;
        if(lput==sizeQueue)
        {
            lput
=0;
        }
        
/*
        if(nEmptyThread)
        {
            //pthread_cond_signal(&condGet);
            sem_post(get);
        }
        
*/

        pthread_mutex_unlock(
&mux);

        sem_post(
get);
    }
private:
    pthread_mutex_t mux;
    
//pthread_cond_t condGet;
    
//pthread_cond_t condPut;
    sem_t* get;
    sem_t
* put;

    
void * * buffer;    //循環(huán)消息隊(duì)列
    int sizeQueue;        //隊(duì)列大小
    int lput;        //location put  放數(shù)據(jù)的指針偏移
    int lget;        //location get  取數(shù)據(jù)的指針偏移
};

CThreadQueue queue;
//使用的時(shí)候給出稍大的CThreadQueue初始化參數(shù),可以減少進(jìn)入內(nèi)核態(tài)的操作。

void * produce(void * arg)
{
    
int i=0;
    pthread_detach(pthread_self());
    
while(i++<100)
    {
        queue.putq((
void *)i);
    }
}

void *consume(void *arg)
{
    
int data;
    
while(1)
    {
        data
=(int)(queue.getq());
        printf(
"data=%d\n",data);
    }
}

int main()
{    
    pthread_t pid;
    
int i=0;

    
while(i++<3)
        pthread_create(
&pid,0,produce,0);
    i
=0;
    
while(i++<3)
        pthread_create(
&pid,0,consume,0);
    sleep(
5);

    
return 0;
}

可以看見,采用信號(hào)量作為資源計(jì)數(shù)之后, 代碼變得"很直白",原來的一些保存隊(duì)列狀態(tài)的變量都不再需要了.

信號(hào)量與線程鎖,條件變量相比還有以下幾點(diǎn)不同:
1)鎖必須是同一個(gè)線程獲取以及釋放, 否則會(huì)死鎖.而條件變量和信號(hào)量則不必.
2)信號(hào)的遞增與減少會(huì)被系統(tǒng)自動(dòng)記住, 系統(tǒng)內(nèi)部有一個(gè)計(jì)數(shù)器實(shí)現(xiàn)信號(hào)量,不必?fù)?dān)心會(huì)丟失, 而喚醒一個(gè)條件變量時(shí),如果沒有相應(yīng)的線程在等待該條件變量, 這次喚醒將被丟失.

posted on 2009-01-15 10:23 那誰 閱讀(15706) 評(píng)論(3)  編輯 收藏 引用 所屬分類: Linux/Unix

評(píng)論

# re: Linux下面的線程鎖,條件變量以及信號(hào)量的使用  回復(fù)  更多評(píng)論   

第二段程序模擬線程鎖中有bug,sem_wait(get)跟sem_wait(put)前后需要加上解鎖加鎖動(dòng)作。

produce 和 consume 的設(shè)計(jì),隊(duì)列大小為1024,測(cè)試數(shù)據(jù)3x100太小。while循環(huán)中最好加上usleep讓線程休息一會(huì)兒,否則consume極可能需要在produce線程跑完了之后才獲得鎖,對(duì)測(cè)試程序不利。
2009-01-27 08:57 | Mensch88

# re: Linux下面的線程鎖,條件變量以及信號(hào)量的使用  回復(fù)  更多評(píng)論   

關(guān)于最后一段對(duì)用信號(hào)量實(shí)現(xiàn)通知/等待機(jī)制和用條件變量來實(shí)現(xiàn)相同機(jī)制的比較,所說的兩點(diǎn)都對(duì)信號(hào)量有利,那條件變量多余了嗎?
2009-02-11 11:39 | yqiang
青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品
  • <ins id="pjuwb"></ins>
    <blockquote id="pjuwb"><pre id="pjuwb"></pre></blockquote>
    <noscript id="pjuwb"></noscript>
          <sup id="pjuwb"><pre id="pjuwb"></pre></sup>
            <dd id="pjuwb"></dd>
            <abbr id="pjuwb"></abbr>
            久久九九免费视频| 黄色国产精品| 亚洲一二三区精品| 国产精品久久9| 蜜臀av性久久久久蜜臀aⅴ四虎| 亚洲国产精品久久人人爱蜜臀 | 亚洲一区国产精品| 亚洲人成艺术| 亚洲视频欧洲视频| 久久av老司机精品网站导航| 久久精品伊人| 亚洲国产精品悠悠久久琪琪| 欧美va天堂| 一区二区三区欧美视频| 性欧美暴力猛交69hd| 久久九九国产精品怡红院| 欧美不卡在线视频| 国产精品成人在线| 亚洲国产99| 性欧美暴力猛交69hd| 欧美国产精品中文字幕| 亚洲午夜久久久久久尤物| 蜜桃av噜噜一区二区三区| 国产精品萝li| 亚洲日韩视频| 美日韩精品免费观看视频| 亚洲久久一区| 久久亚洲私人国产精品va| 国产精品vvv| 一区二区三区久久久| 国产精品三区www17con| 亚洲国产日韩在线| 久久夜色精品国产噜噜av| 亚洲一区二区三区四区五区黄| 久久久99爱| 好看的日韩av电影| 久久精品视频免费观看| 亚洲性线免费观看视频成熟| 欧美精品在线观看播放| 亚洲人体偷拍| 亚洲开发第一视频在线播放| 欧美日韩国产限制| 日韩视频在线观看国产| 欧美激情一区二区三区蜜桃视频| 久久久久久久综合狠狠综合| 国产午夜精品在线| 亚洲欧洲综合另类| 欧美精品一区二| 欧美在线观看你懂的| 久久九九免费| 一区二区三区精密机械公司| 亚洲国产小视频在线观看| 欧美精品91| 久久成年人视频| 欧美激情中文不卡| 亚洲欧美日韩另类精品一区二区三区| 宅男精品视频| 亚洲激情黄色| 欧美在线视频观看免费网站| 在线观看不卡av| 亚洲一区国产视频| 亚洲美女免费精品视频在线观看| 亚洲欧美日韩专区| 亚洲免费观看高清在线观看| 亚洲免费影视| 在线视频你懂得一区| 女女同性精品视频| 性欧美精品高清| 欧美激情国产精品| 久久这里有精品15一区二区三区| 免费日韩成人| 午夜日韩视频| 久久久久一本一区二区青青蜜月| 狠狠干综合网| 欧美日韩三级| 免费视频一区| 久久久久国色av免费观看性色| 99亚洲一区二区| 欧美国产第一页| 亚洲福利精品| 亚洲二区三区四区| 久久久久国产精品厨房| 亚洲一区欧美激情| 欧美承认网站| 欧美激情黄色片| 亚洲精品乱码久久久久久蜜桃91 | 最新国产乱人伦偷精品免费网站 | 国产精品欧美经典| 先锋a资源在线看亚洲| 欧美中文字幕视频| 黑人操亚洲美女惩罚| 美女精品在线| 欧美国产日韩在线观看| 日韩午夜高潮| 好看不卡的中文字幕| 国产精品免费小视频| 欧美精品亚洲一区二区在线播放| 亚洲综合好骚| 亚洲国产精品www| 久久精品一本| 亚洲一区在线视频| 日韩一级欧洲| 亚洲与欧洲av电影| 日韩一级黄色大片| 亚洲国产成人tv| 亚洲福利久久| 亚洲精品小视频在线观看| 国产一区二区观看| 国产精品久久久久婷婷| 国产精品久久久久久户外露出 | 一区二区av| 亚洲精品一级| 亚洲免费成人av| 一区二区免费看| 小黄鸭精品aⅴ导航网站入口| 99亚洲一区二区| 亚洲免费综合| 欧美激情一区二区久久久| 亚洲另类春色国产| 久久蜜桃香蕉精品一区二区三区| 欧美日韩精品一区二区天天拍小说| 国产精品一二三视频| 国产性天天综合网| 亚洲先锋成人| 久久精品二区三区| 国产精品亚洲网站| 91久久久久久久久久久久久| 久久久国产视频91| aⅴ色国产欧美| 你懂的视频一区二区| 国产午夜精品麻豆| 香港成人在线视频| 在线视频亚洲欧美| 欧美午夜免费电影| 亚洲一区二区三区视频| 亚洲国产欧美另类丝袜| 久久九九免费视频| 国产亚洲亚洲| 免费在线看成人av| 久久精精品视频| 樱花yy私人影院亚洲| 国产最新精品精品你懂的| 国产精品久久久一本精品| 国产精品久久久久久久免费软件| 国产精品三上| 亚洲一区二区高清视频| 久久夜色撩人精品| 亚洲无线视频| 免费看精品久久片| 精品51国产黑色丝袜高跟鞋| 99这里只有精品| 亚洲国产精品久久人人爱蜜臀| 亚洲一区二区三区影院| 欧美成人亚洲成人| 亚洲国产欧美另类丝袜| 葵司免费一区二区三区四区五区| 校园春色国产精品| 国产欧美一区二区三区久久人妖| 99精品99久久久久久宅男| 99精品国产一区二区青青牛奶| 久久精品人人做人人爽| 中文欧美字幕免费| 国产伦精品一区二区三区在线观看 | 国产精品私拍pans大尺度在线| 最新成人av网站| 欧美国产成人在线| 欧美国产日韩一区二区三区| 日韩一区二区电影网| 亚洲精品在线三区| 国产一区二区三区在线观看免费| 久久免费视频一区| 欧美久久久久久久久久| 亚洲综合精品四区| 久久久.com| 一区二区三区欧美| 欧美专区在线播放| 亚洲欧洲精品一区二区| 亚洲人体一区| 国产在线精品一区二区夜色| 欧美不卡高清| 国产精品任我爽爆在线播放| 亚洲伦理精品| 亚洲视频日本| 亚洲激情在线观看| 午夜亚洲性色福利视频| 亚洲国产精品一区制服丝袜| 午夜精品福利电影| 最新亚洲一区| 国内自拍一区| 欧美亚洲第一页| 免费观看成人www动漫视频| 亚洲一区二区三区四区在线观看 | 女女同性女同一区二区三区91| 中国成人亚色综合网站| 亚洲国产成人精品久久| 久久精品一区二区三区不卡牛牛 | 欧美三级日本三级少妇99| 久久综合伊人77777麻豆| 亚洲欧美日韩精品综合在线观看 | 亚洲专区欧美专区|