![]() |
preventing execution of same executable
Hi ,
I have an executable say a.out. My requirement is that ..At a time only single instance of a.out be executed Is that possible in linux |
Re: preventing execution of same executable
I don't think you can prevent the OS launching a second copy of the executable but you can make them detect each other. For example one way is to create a file lock when the executable starts, so if a second instance is launched, it would try to lock that file, fail, deduce from that that there is already someone else running and exit.
|
Re: preventing execution of same executable
k..
Thanx a lot for the response |
| All times are GMT +5.5. The time now is 13:33. |