On Wed, Nov 20, 2013 at 7:45 PM, Xabier Oneca -- xOneca <[email protected]> wrote: >> Your bloatcheck looks suspect. Did you look at assembly >> why it is so much smaller? > > Maybe because 'rf_sysfs' is dinamically allocated? > > - char rf_sysfs[sizeof("/sys/class/rfkill/rfkill%u/uevent") + > sizeof(int)*3]; > + char *rf_sysfs;
On-stack allocation does not contribute to bloatcheck numbers. Elimination of ~50 bytes array on stack should not be visible there. _______________________________________________ busybox mailing list [email protected] http://lists.busybox.net/mailman/listinfo/busybox
