You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

73 lines
1.8KB

  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 "config.h"
  25. #include "libavutil/cpu.h"
  26. #include "libavutil/thread.h"
  27. #if HAVE_PTHREADS
  28. static void *thread_main(void *arg)
  29. {
  30. int *flags = arg;
  31. *flags = av_get_cpu_flags();
  32. return NULL;
  33. }
  34. #endif
  35. int main(int argc, char **argv)
  36. {
  37. #if HAVE_PTHREADS
  38. int cpu_flags1;
  39. int cpu_flags2;
  40. int ret;
  41. pthread_t thread1;
  42. pthread_t thread2;
  43. if ((ret = pthread_create(&thread1, NULL, thread_main, &cpu_flags1))) {
  44. fprintf(stderr, "pthread_create failed: %s.\n", strerror(ret));
  45. return 1;
  46. }
  47. if ((ret = pthread_create(&thread2, NULL, thread_main, &cpu_flags2))) {
  48. fprintf(stderr, "pthread_create failed: %s.\n", strerror(ret));
  49. return 1;
  50. }
  51. pthread_join(thread1, NULL);
  52. pthread_join(thread2, NULL);
  53. if (cpu_flags1 < 0)
  54. return 2;
  55. if (cpu_flags2 < 0)
  56. return 2;
  57. if (cpu_flags1 != cpu_flags2)
  58. return 3;
  59. #endif
  60. return 0;
  61. }