gpt4 book ai didi

c++ - C/C++ 如何判断一个程序是否已经在运行?

转载 作者:可可西里 更新时间:2023-11-01 09:39:24 29 4
gpt4 key购买 nike

在 Windows 环境中,我不希望我的程序的两个实例同时运行。

Related

Is using a Mutex to prevent multiple instances of the same program from running safe?

最佳答案

如果是你的程序,那么windows下最短的版本:

int main(int argc, char** argv)
{
CreateMutexA(0, FALSE, "Local\\$myprogram$"); // try to create a named mutex
if(GetLastError() == ERROR_ALREADY_EXISTS) // did the mutex already exist?
return -1; // quit; mutex is released automatically

// ... program code ...
}

如果您需要的只是一个简单的检查,则无需变得疯狂复杂...

关于c++ - C/C++ 如何判断一个程序是否已经在运行?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/800730/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com