Tagged Questions

5
votes
2answers
464 views

libeio on windows

What would it take to port libeio to windows?
3
votes
1answer
2k views

Does 64-bit Windows use KERNEL64?

I was looking at some libraries with dumpbin and I noticed that all the 64-bit versions were linked to KERNEL32. Is there no KERNEL64 on 64-bit Windows? If not, why? All my operating systems are ...
2
votes
9answers
4k views

C/C++ How to tell if a program is already running?

In a Windows environment, I don't want two instances of my program running at the same time. Related Is using a Mutex to prevent multiple instances of the same program from running safe?