test-ctors.c 605 B

123456789101112131415161718
  1. /* This Source Code Form is subject to the terms of the Mozilla Public
  2. * License, v. 2.0. If a copy of the MPL was not distributed with this
  3. * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
  4. #include "test.c"
  5. /* Recent binutils would put .ctors content into a .init_array section */
  6. __attribute__((section(".manual_ctors"), used))
  7. static void (*ctors[])() = { (void (*)())-1, end_test, test, NULL };
  8. __attribute__((section(".init")))
  9. void _init() {
  10. void (**func)() = &ctors[sizeof(ctors) / sizeof(void (*)()) - 1];
  11. while (*(--func) != (void (*)())-1) {
  12. (*func)();
  13. }
  14. }