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.7 KiB

  1. /*
  2. ISC License
  3. Copyright (c) 2023, Antonio SJ Musumeci <trapexit@spawn.link>
  4. Permission to use, copy, modify, and/or distribute this software for any
  5. purpose with or without fee is hereby granted, provided that the above
  6. copyright notice and this permission notice appear in all copies.
  7. THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
  8. WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
  9. MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
  10. ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
  11. WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
  12. ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
  13. OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  14. */
  15. #include <string>
  16. static int g_READ_THREAD_COUNT = -1;
  17. static int g_PROCESS_THREAD_COUNT = -1;
  18. static int g_PROCESS_THREAD_QUEUE_DEPTH = -1;
  19. static std::string g_PIN_THREADS = {};
  20. int
  21. fuse_config_get_read_thread_count()
  22. {
  23. return g_READ_THREAD_COUNT;
  24. }
  25. void
  26. fuse_config_set_read_thread_count(int const v_)
  27. {
  28. g_READ_THREAD_COUNT = v_;
  29. }
  30. int
  31. fuse_config_get_process_thread_count()
  32. {
  33. return g_PROCESS_THREAD_COUNT;
  34. }
  35. void
  36. fuse_config_set_process_thread_count(int const v_)
  37. {
  38. g_PROCESS_THREAD_COUNT = v_;
  39. }
  40. int
  41. fuse_config_get_process_thread_queue_depth()
  42. {
  43. return g_PROCESS_THREAD_QUEUE_DEPTH;
  44. }
  45. void
  46. fuse_config_set_process_thread_queue_depth(int const v_)
  47. {
  48. g_PROCESS_THREAD_QUEUE_DEPTH = v_;
  49. }
  50. std::string
  51. fuse_config_get_pin_threads()
  52. {
  53. return g_PIN_THREADS;
  54. }
  55. void
  56. fuse_config_set_pin_threads(std::string const v_)
  57. {
  58. g_PIN_THREADS = v_;
  59. }