cpu_init.c 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. /*
  2. * This file is part of FFmpeg.
  3. *
  4. * FFmpeg is free software; you can redistribute it and/or
  5. * modify it under the terms of the GNU Lesser General Public
  6. * License as published by the Free Software Foundation; either
  7. * version 2.1 of the License, or (at your option) any later version.
  8. *
  9. * FFmpeg is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  12. * Lesser General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU Lesser General Public
  15. * License along with FFmpeg; if not, write to the Free Software
  16. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  17. */
  18. /*
  19. * This test program tests whether the one-time initialization in
  20. * av_get_cpu_flags() has data races.
  21. */
  22. #include <stdio.h>
  23. #include <string.h>
  24. #include "libavutil/cpu.h"
  25. #include "libavutil/thread.h"
  26. static void *thread_main(void *arg)
  27. {
  28. int *flags = arg;
  29. *flags = av_get_cpu_flags();
  30. return NULL;
  31. }
  32. int main(void)
  33. {
  34. int cpu_flags1;
  35. int cpu_flags2;
  36. int ret;
  37. pthread_t thread1;
  38. pthread_t thread2;
  39. if ((ret = pthread_create(&thread1, NULL, thread_main, &cpu_flags1))) {
  40. fprintf(stderr, "pthread_create failed: %s.\n", strerror(ret));
  41. return 1;
  42. }
  43. if ((ret = pthread_create(&thread2, NULL, thread_main, &cpu_flags2))) {
  44. fprintf(stderr, "pthread_create failed: %s.\n", strerror(ret));
  45. return 1;
  46. }
  47. pthread_join(thread1, NULL);
  48. pthread_join(thread2, NULL);
  49. if (cpu_flags1 < 0)
  50. return 2;
  51. if (cpu_flags2 < 0)
  52. return 2;
  53. if (cpu_flags1 != cpu_flags2)
  54. return 3;
  55. return 0;
  56. }