ВходНаше всё Теги codebook 无线电组件 Поиск Опросы Закон Вторник
9 июля
264268 Топик полностью
amx (28.07.2011 16:04, просмотров: 90) ответил fk0 на GCC. Как сделать, чтоб при старте программы вызвались функций из подключенных модулей, но так чтоб их в main не записывать? В C++ -- понятно, статические конструкторы. В голом C?
__attribute__((constructor)) http://gcc.gnu.org/onlinedocs/gcc/Function-Attributes.html
constructor destructor constructor (priority) destructor (priority) The constructor attribute causes the function to be called automatically before execution enters main (). Similarly, the destructor attribute causes the function to be called automatically after main () has completed or exit () has been called. Functions with these attributes are useful for initializing data that will be used implicitly during the execution of the program. You may provide an optional integer priority to control the order in which constructor and destructor functions are run. A constructor with a smaller priority number runs before a constructor with a larger priority number; the opposite relationship holds for destructors. So, if you have a constructor that allocates a resource and a destructor that deallocates the same resource, both functions typically have the same priority. The priorities for constructor and destructor functions are the same as those specified for namespace-scope C++ objects (see C++ Attributes). These attributes are not currently implemented for Objective-C.