• Atomicity
    Is the operation below an atomic operation in a multitasking environment like RTX-51? If it is not, then what is supposed to do to make it an atomic one except using locking mechanisms? void func...
  • atomic - LPC313x
    Hello to everyone, can anyone please advise me whether it exists a way to execute on an LPC313x more than one instruction atomically (like for instance _atomic_ for C16x)? Thanks and best regards...
  • atomic operations
    Note: This was originally posted on 31st August 2010 at http://forums.arm.com Hi all, I have to migrate Windows Code to Linux for an ARM processor. The Windows code uses the InterlockedIncrement function...
  • atomic and IEN
    Hello all, I have seen an old post a while ago discussing an interesting problem but I just don't seem to be able to find it: Somebody described an interesting experiment that demonstrated that setting...
  • Is increment uint32_t atomic operation
    Hi, I have CMSIS RTOS thread increment uint32_t variable. Other thread is reading uint32_t variable. Do I need to use mutex to protected these read and write. Can I use any better way...