I need certain operation to be Atomic.
Here 'Atomic' means to say "once that method started execution, it shouldn't be interrupted till it finishes, And even thread scheduler also should not make that thread to Runnable state once its in Running state".
All methods are Native methods and multiple threads are running concurrently to execute these methods.
First Question: Is the native methods execution is Atomic in nature?
Second Question : To achieve the Atomicity, Can we use java concurent/lock APIs, if yes, please provide any example/link if possible?
Thanks.
Atomicis a little off. It is not about interruption, it is about consistent data. There is nothing that you can do about interruptions or parallel operations -- especially on a multiple processor -- but there is much you can do to synchronize operations and guarantee consistent data. Can you edit your question to explain why you want to block interruptions? – Gray Oct 12 '11 at 12:58