Config.in.threads 604 B

12345678910111213141516171819202122232425262728
  1. # This file is part of the OpenADK project. OpenADK is copyrighted
  2. # material, please see the LICENCE file in the top-level directory.
  3. choice
  4. prompt "Threading mode"
  5. depends on ADK_TARGET_LIB_UCLIBC_NG
  6. config ADK_TARGET_WITH_NPTL
  7. bool "NPTL"
  8. depends on ADK_TARGET_SUPPORTS_NPTL && ADK_TARGET_SUPPORTS_THREADS
  9. config ADK_TARGET_WITH_LT
  10. bool "Linuxthreads"
  11. depends on ADK_TARGET_SUPPORTS_LT && ADK_TARGET_SUPPORTS_THREADS
  12. config ADK_TARGET_WITHOUT_THREADS
  13. bool "none"
  14. endchoice
  15. config ADK_TARGET_SUPPORTS_THREADS
  16. bool
  17. config ADK_TARGET_SUPPORTS_NPTL
  18. bool
  19. config ADK_TARGET_SUPPORTS_LT
  20. bool