In C, if my application ends unexpectedly can I call a function before that happens? I'm writing a flag into a database (processRunning = 1) that prevents other applications from starting a similar process. When the application ends it would not change that flag back.
|
feedback
|
|
look into the | |||||||||||||
feedback
|
|
If your application terminates normally, it'll run functions registered through Note that “terminates normally” means through calls to | |||||||||||||||
feedback
|
|
On POSIX, the proper solution is to protect the data with a robust mutex in shared memory. If your process has died with a robust mutex held, another program trying to lock the mutex will not deadlock but will instead return Edit: If your only want to prevent multiple instances of the program from running, there are surely better/simpler ways, like holding a lock on the database file. | |||
|
feedback
|
|
There are better ways of preventing the application to run twice. One solution is to use named mutexes that are system wide. Another and maybe simpler solution is to lock a file (open for writing). Even when the application crashes resources are freed by the OS and you will be able to start the application again, because the file or mutex will not be locked anymore. | ||||
|
feedback
|