码迷,mamicode.com
首页 > 其他好文 > 详细

struct 方法使用

时间:2017-07-04 20:02:38      阅读:156      评论:0      收藏:0      [点我收藏+]

标签:class   bsp   plist   head   str   base   inline   eve   void   

struct _Worker
{
    _Worker()
    {
        pWokerbase=NULL;
        hThread=INVALID_HANDLE_VALUE;
        pListConn=NULL;
    }
    struct event_base *pWokerbase;
    HANDLE hThread;
    _ConnList *pListConn;
    inline _Conn* GetFreeConn()
    {
        _Conn*pItem=NULL;
        if(pListConn->head!=pListConn->tail)
        {
            pItem=pListConn->head;
            pListConn->head=pListConn->head->next;
        }
        return pItem;
    }
    inline void PutFreeConn(_Conn *pItem)
    {
        pListConn->tail->next=pItem;
        pListConn->tail=pItem;
    }
};

 

struct 方法使用

标签:class   bsp   plist   head   str   base   inline   eve   void   

原文地址:http://www.cnblogs.com/wainiwann/p/7118052.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!