|
|
|
|
|
by jongraehl
5570 days ago
|
|
What he's doing seems useful to the project. There's no better time to get it right. I'm just surprised he's willing to expend so much effort communicating instead of just fixing the patch. I noticed that C programmers tend to use macros for things where (possibly non-exported) inline functions would make more sense. Why is that? Are they in the habit of building the OS with all optimizations off? Or is it that they're being used as poor man's generic function? |
|
Macros are substituted in before the compiler, so they are always inlined.
EDIT: Hint, not suggestion.