So the new compiler switch in the uClibc is a bug-fix.
Does anyone know which programs run under no-mmu systems and which have to be 
touched?

Bernd

Michael Schnell schrieb:


My question now is, must I convert an unknown number of utilities by myself
or is there another new compiler switch that I haven't seen.
There are compile-system that just define "fork" as "vfork". This does compile, but as there are cases when fork and vfork are not "workalike enough", this sometimes results in nasty crashes at runtime, You need to port these applications decently. Generally, when fork() is followed _directly_ by an exec() call - to start a new program, you can usually just replace it with vfork(). In all other cases you need to take special care.

-Michael
_______________________________________________
uClinux-dev mailing list
uClinux-dev@uclinux.org
http://mailman.uclinux.org/mailman/listinfo/uclinux-dev
This message was resent by uclinux-dev@uclinux.org
To unsubscribe see:
http://mailman.uclinux.org/mailman/options/uclinux-dev


_______________________________________________
uClinux-dev mailing list
uClinux-dev@uclinux.org
http://mailman.uclinux.org/mailman/listinfo/uclinux-dev
This message was resent by uclinux-dev@uclinux.org
To unsubscribe see:
http://mailman.uclinux.org/mailman/options/uclinux-dev

Reply via email to