On Thu, 04 Jan 2007 11:51:10 -0600, Eric Sandeen wrote: >Also - is it ok to alias a function with one signature to a function with >another signature?
NO! Specific cases of type mismatches may work on many machines (say different pointer types as long as they aren't accessed), but in general this won't work since types affect calling conventions. Abusing aliasing like this is exactly like casting a function pointer to a different type that it actually has, and then invoking it at that type: all bets are off. Don't do this. Ever. /Mikael - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/