I'm having a (what i think it's) strange behaviour using QThread. I'm testing in GNU/Linux with a 3.x kernel

When I use a render thread to realize the opengl operations that should be drawn in the QGLWidget, if i run it in my Phenom II X4 it works fine. But if I run in a Intel(R) Atom(TM) CPU N550 1.50GHz the GUI is only refreshed when an event it's triggered, (if I move the mouse or press the keyboard) I've tried using a Signal/Event across threads to notify the main thread to update itself but it doesn't work. I've called the update method of the QGLWidget inside the render thread but it doesn't work either.

I can reproduce it with this example http://mih.voxindeserto.de/threadedcube.html If I add this invocation
Qt Code:
  1. setRotation(rand()%120,rand()%120,rand()%150);
To copy to clipboard, switch view to plain text mode 
inside the run method of the render thread of the ExampleRenderThread.

The tho machines have the same OS, Archlinux x86_64 with 3.0.7 Kernel

I don't know if is a hardware related or some QThread setting that I'm missing or event filtering. What may be happening?