Showing posts with label errors. Show all posts
Showing posts with label errors. Show all posts

Tuesday, December 2, 2008

GTK Error When forking

When you get an error such as a "Fatal IO error" when using GTK and forking a child process. you have just ran into a bug with GTK. GTK doesn't like the way the child exits when it is being forked.

To resolve this, make sure that we exit the child using: _exit (-1), instead of the normal exit function.

Saturday, November 15, 2008

Firefox Flex Error

In Flex, when you build files normally, you have to take note of the folder you copied your files from. If you are running into errors about debuggers in firefox, that means you copied the wrong files to the server you are running your program from. You should have copied files from the bin-release folder and not the bin-debug folder.

To build files into your bin-release folder you have to choose the "Build Release" option inside Flex. This will essentailyl ask Flex to build a release for real usage and not for debugging purposes.