链表,配合critical section

#include <windows.h>
typedef struct _Node
{
struct _Node *next;
int data;
} Node;


typedef struct _List
{
Node *head;
CRITICAL_SECTION critical_sec;


} List;
List *CreateList()
{
List *pList = (List*)malloc(sizeof(List));
pList->head = NULL;
InitializeCriticalSection(&pList->critical_sec);
return pList;
}
void DeleteList(List *pList)
{
DeleteCriticalSection(&pList->critical_sec);
free(pList);
}
void AddHead(List *pList, Node *node)
{
EnterCriticalSection(&pList->critical_sec);
node->next = pList->head;
pList->head = node;
LeaveCriticalSection(&pList->critical_sec); 
}
void Insert(List *pList, Node *afterNode, Node *newNode)
{
EnterCriticalSection(&pList->critical_sec); 
if (afterNode == NULL)
{
AddHead(pList, newNode);
}
else
{
newNode->next = afterNode->next;
afterNode->next = newNode;
}
LeaveCriticalSection(&pList->critical_sec);
}
Node *Next(List *pList, Node *node)
{
Node* next;
EnterCriticalSection(&pList->critical_sec);
next = node->next;
LeaveCriticalSection(&pList->critical_sec);
return next;

}


惊恐最小锁定时间

      同步机制中,不要长时间锁住一份资源。

警告:千万不要在一个cirtical section 之中调用Sleep() 或不论什么Wait() API函数。


posted @ 2017-06-30 18:54  jzdwajue  阅读(82)  评论(0编辑  收藏  举报