I\'ve wrote a demo using the SDL library (1.2.7). The demo run perfectly via ssh. But if I try to run it from an icon or from the console then it freeze when the demo exists.
I can replicate the problem via ssh if I set the following environment:
export QWS_DISPLAY="Transformed:Rot180:0"
export QTDIR=/home/QtPalmtop
Do you think is something with my demo (dodgy pointer or something) or is it something with qtopia?
The main method look like this and I can see the last \"printf\":
int main(int argc, char ** argv) {
// demo code
...
...
printf("exit!!!!");
return 0;
}