1. 07 May, 2022 1 commit
  2. 06 May, 2022 1 commit
  3. 07 Apr, 2022 8 commits
  4. 06 Apr, 2022 2 commits
  5. 05 Apr, 2022 1 commit
  6. 30 Mar, 2022 1 commit
  7. 28 Mar, 2022 3 commits
  8. 22 Mar, 2022 1 commit
  9. 17 Mar, 2022 1 commit
  10. 16 Mar, 2022 3 commits
  11. 14 Mar, 2022 2 commits
  12. 11 Mar, 2022 1 commit
  13. 04 Mar, 2022 2 commits
  14. 03 Mar, 2022 2 commits
  15. 02 Mar, 2022 1 commit
  16. 24 Feb, 2022 1 commit
  17. 21 Feb, 2022 2 commits
  18. 18 Feb, 2022 1 commit
  19. 17 Feb, 2022 1 commit
  20. 16 Feb, 2022 1 commit
  21. 09 Feb, 2022 2 commits
    • Sagar Parsawar's avatar
    • Cedric Roux's avatar
      nr-ue: fix T tracer · e5a3bcdc
      Cedric Roux authored
      T tracer was not functional anymore. because init_tpools() was called
      before T_Config_Init().
      
      The problem was that init_tpools() creates some threads and T_Config_Init()
      does call fork() and the child process (which is the one running the
      softmodem, the parent process is used to monitor it, this is the design
      of the T tracer, maybe to change at some point, it's too complicated) has
      no thread after the fork(). The threads created by init_tpools() are gone.
      Game over.
      
      In conclusion: T_Config_Init() has to be called very early in the life of
      the softmodem, at least before init_tpools().
      e5a3bcdc
  22. 04 Feb, 2022 2 commits