我一直在搜索,我已经决定问,因为我无法找到正确答案。
实际上我有两个过程
流程1:
#include <windows.h>
#include <stdio.h>
// This process creates the mutex object.
int main(void)
{
HANDLE hMutex;
hMutex = CreateMutex(
NULL, // default security descriptor
TRUE, // mutex owned
TEXT("AnotherMutex")); // object name
if (hMutex == NULL)
printf("CreateMutex error: %d\n", GetLastError() );
else
if ( GetLastError() == ERROR_ALREADY_EXISTS )
printf("CreateMutex opened an existing mutex\n");
else printf("CreateMutex created a new mutex.\n");
if(WaitForSingleObject(hMutex, INFINITE) == WAIT_FAILED)
printf("Error while waiting for the mutex.\n");
else
printf("Mutex openned by second process.\n");
CloseHandle(hMutex);
return 0;
}
流程2:
#include <windows.h>
#include <stdio.h>
// This process opens a handle to a mutex created by another process.
int main(void)
{
HANDLE hMutex;
hMutex = OpenMutex(
MUTEX_ALL_ACCESS, // request full access
FALSE, // handle not inheritable
TEXT("AnotherMutex")); // object name
if (hMutex == NULL)
printf("OpenMutex error: %d\n", GetLastError() );
else printf("OpenMutex successfully opened the mutex.\n");
if(!ReleaseMutex(hMutex)){
printf("Error while releasing the mutex.\n")
}
CloseHandle(hMutex);
return 0;
}
因此,当我运行第一个进程时,它不会等待第二个进程释放互斥锁但是;由于互斥锁是创建的,没有信号,它不应该等到某个进程/线程释放它然后打印消息?
答案 0 :(得分:1)
您似乎混淆了两种类型的同步对象:Mutexes
和Events
。
Mutexes
通常用于保护对可共享资源的访问。在关键部分的入口处,应调用WaitForSingleObject
上的Mutex
。如果另一个执行单元(线程或进程)未获得Mutex
,则该执行单元获取它并继续运行,否则它将被锁定,直到其他进程释放它为止。在关键部分的末尾,Mutex
应该被释放。见Using Mutexes。这就是为什么您的流程不会被暂停的原因。
Events
用于同步执行单元或通知某些内容。当一个人创建一个事件时,它会指定其信号状态。当调用WaitForSingleObject
并且事件处于非信号状态时,执行单元将被暂停,直到事件发出信号。见Using Events
在您的情况下,您应该使用Event