libtest2.c 722 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. #include <stdio.h>
  2. #include <pthread.h>
  3. void __attribute__((constructor)) libtest2_ctor(void);
  4. void libtest2_ctor(void)
  5. {
  6. printf("libtest2: constructor!\n");
  7. }
  8. void __attribute__((destructor)) libtest2_dtor(void);
  9. void libtest2_dtor(void)
  10. {
  11. printf("libtest2: destructor!\n");
  12. }
  13. void function1(void);
  14. void function1(void)
  15. {
  16. printf("libtest2: I am function1!\n");
  17. }
  18. void __attribute__((weak)) function2(void);
  19. void function2(void)
  20. {
  21. printf("libtest2: I am weak function2!\n");
  22. }
  23. int libtest2_func(const char *s);
  24. int libtest2_func(const char *s)
  25. {
  26. printf( "libtest2: function1 = %p\n"
  27. "libtest2: function2 = %p\n",
  28. function1, function2);
  29. function1();
  30. function2();
  31. return 0;
  32. }