Kconfig 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. menuconfig RTT_POSIX_TESTCASE_TIME_H
  2. bool "<time.h>"
  3. default n
  4. if RTT_POSIX_TESTCASE_TIME_H
  5. config TIME_H_ASCTIME
  6. bool "<time.h, sys/time.h> -> asctime"
  7. default n
  8. config TIME_H_CLOCK_GETTIME
  9. bool "<time.h, sys/time.h> -> clock_gettime"
  10. default n
  11. config TIME_H_CLOCK
  12. bool "<time.h, sys/time.h> -> clock"
  13. default n
  14. config TIME_H_DIFFTIME
  15. bool "<time.h, sys/time.h> -> difftime"
  16. default n
  17. config TIME_H_GMTIME_R
  18. bool "<time.h, sys/time.h> -> gmtime_r"
  19. default n
  20. config TIME_H_GMTIME
  21. bool "<time.h, sys/time.h> -> gmtime"
  22. default n
  23. config TIME_H_LOCALTIME
  24. bool "<time.h, sys/time.h> -> localtime"
  25. default n
  26. config TIME_H_MKTIME
  27. bool "<time.h, sys/time.h> -> mktime"
  28. default n
  29. config TIME_H_NANOSLEEP
  30. bool "<time.h, sys/time.h> -> nanosleep"
  31. default n
  32. config TIME_H_STRFTIME
  33. bool "<time.h, sys/time.h> -> strftime"
  34. default n
  35. config TIME_H_TIME
  36. bool "<time.h, sys/time.h> -> time"
  37. default n
  38. config TIME_H_UTIMES
  39. bool "<time.h, sys/time.h> -> utimes"
  40. default n
  41. endif