I understand that a static function in C allows that particular function to only be call within the confines of that file. What I am interested in is how this occurs. Is it being placed into a specific part of memory or is the compiler applying a specific operation to that function. Can this same process be applied to a function call in assembly?
|
|
|
It doesn't make it into the object's name table which prevents it from being linked into other stuff. |
|||
|
|
|
Declaring a function What You still can call that function from other translation units by other means. For example, if you somehow obtained a pointer to |
||||
|
|
|
Functions and other names are exported as symbols in the object file. The linker uses these symbols to resolve all sorts of dangling references at link time (e.g. a call to a function defined in another file). When you declare it |
|||
|
|
|
It's in fact the opposite. When a function is not static, its name is written somewhere in the object file, which the linker can then use to link other object files using this function, to the address of that function. When the function is declared |
||||
|
|