Config.in.threads 684 B

1234567891011121314151617181920212223242526272829
  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. ((ADK_TARGET_ARCH_ARM && ADK_TARGET_BINFMT_FDPIC) || ADK_TARGET_WITH_MMU)
  10. config ADK_TARGET_WITH_LT
  11. bool "Linuxthreads"
  12. depends on ADK_TARGET_SUPPORTS_LT && ADK_TARGET_SUPPORTS_THREADS
  13. config ADK_TARGET_WITHOUT_THREADS
  14. bool "none"
  15. endchoice
  16. config ADK_TARGET_SUPPORTS_THREADS
  17. bool
  18. config ADK_TARGET_SUPPORTS_NPTL
  19. bool
  20. config ADK_TARGET_SUPPORTS_LT
  21. bool