Results 34 comments of conversy

Thank you. For the test data, I'll do it later, I'm not able to do it for a few weeks.

btw, to prevent another warning, I had to exchange some code, because `ThreadProfilers_Constructor` creates a thread: ``` // Create the thread profilers container New_2(ThreadProfilers, rmt->threadProfilers, &rmt->timer, rmt->mq_to_rmt_thread); if (error !=...

Hi, sorry I got caught by other concerns, I did not follow up this issue, I'm back to it. I still have the problem with the latest `Remotery`version (though I...

I tried, but it's not better. The thing is, TSAN complains about the last line of: ``` static rmtU32 LoadAcquire(rmtAtomicU32* address) { rmtU32 value = *address; ``` since ```rmtAtomicU32``` is...

nice find for the similar issue... I wrote a tentative fix, I've sent a PR. With these fixes, I have no more warning at initialization or at run-time, and Remotery...

thanks for investigating this, meanwhile I've done a [PR](https://github.com/Celtoys/Remotery/pull/238), maybe you can have a look at it?

Hi, sorry for the late answer. Trying with the 'devel' branch, using this command: qemu-system-arm -kernel kernel-qemu-4.4.34-jessie -cpu arm1176 -m 256 -M versatilepb -serial stdio -append "root=/dev/sda1 panic=1 rootfstype=ext4 rw"...

Note that there was a thread on raspberrypi.org forums about raspbian-ua-netinst: https://www.raspberrypi.org/forums/viewtopic.php?f=66&t=89693 it pointed to this script: https://pastebin.com/raw/sqtQ19Ci I tried to imitate what this last script does to the .img,...

FYI: according to this comment https://stackoverflow.com/a/45893057 @ SO (see the end of the comment), this does not seem to be ua-netinst specific.

I gave it a quick try today, using https://github.com/dhruvvyas90/qemu-rpi-kernel/ and this command: `qemu-system-arm \ -M versatilepb \ -cpu arm1176 \ -m 256 \ -hda raspberrypi-ua-netinst-git-caf7423.img \ -net user,hostfwd=tcp::5022-:22 \ -dtb...