An error occurred fetching the project authors.
  1. 07 Nov, 2018 1 commit
  2. 28 Sep, 2018 3 commits
  3. 24 Sep, 2018 1 commit
  4. 21 Sep, 2018 1 commit
  5. 20 Sep, 2018 3 commits
  6. 19 Sep, 2018 2 commits
  7. 11 Sep, 2018 1 commit
    • Cedric Roux's avatar
      hotfix: let compilation work · 957bd567
      Cedric Roux authored
      When compiling in debug mode, the 'inline' semantics of C99 led to the errors:
      
      /roux/w25/openairinterface5g/common/utils/LOG/log.c:479: undefined reference to `log_header'
      libUTIL.a(log.c.o): In function `log_dump':
      /roux/w25/openairinterface5g/common/utils/LOG/log.c:502: undefined reference to `log_header'
      collect2: error: ld returned 1 exit status
      
      Let's use static instead of inline.
      957bd567
  8. 09 Sep, 2018 1 commit
  9. 07 Sep, 2018 3 commits
  10. 05 Sep, 2018 2 commits
  11. 04 Sep, 2018 6 commits
  12. 03 Sep, 2018 2 commits
    • Robert Schmidt's avatar
      fix: avoid AssertFatal() in load_module_shlib() · 1e9f3235
      Robert Schmidt authored
      don't fail in library utility function, return with error code instead and let
      application decide what is best on how to proceed
      1e9f3235
    • Robert Schmidt's avatar
      improve load_module_shlib() · d24e17f0
      Robert Schmidt authored
      * check whether a library has been loaded before; in this case, don't allocate
        new memory but load from old library again
      * vital parameters, previous exit_fun are checked by AssertFatal()
      * structure has changed a bit to make it easier to follow (instead of nested
        ifs includes one goto to the end of the function)
      * formatting has been improved
      d24e17f0
  13. 30 Aug, 2018 2 commits
  14. 29 Aug, 2018 1 commit
  15. 28 Aug, 2018 2 commits
  16. 24 Aug, 2018 3 commits
  17. 17 Aug, 2018 5 commits
    • Cedric Roux's avatar
      88724afd
    • Cedric Roux's avatar
      T: bug fixes for the T cache · 475d5eb8
      Cedric Roux authored
      - 'busy' has to be handled in a more atomic fashion to avoid crazy
        runtime race conditions
      - the basic simulator is too fast sometimes; rewrite the accesses to
        the T cache to avoid there again crazy behaviors
      
      Hopefully that's better...
      475d5eb8
    • Cedric Roux's avatar
      compilation warning "jobserver unavailable" removal · d4a8b5f3
      Cedric Roux authored
      This commit removes the warning:
      make[4]: warning: jobserver unavailable: using -j1.  Add '+' to parent make rule.
      
      Basically, inside a Makefile we should use $(MAKE) instead of make.
      d4a8b5f3
    • Cedric Roux's avatar
      minor: remove TABs · 40543301
      Cedric Roux authored
      40543301
    • Cedric Roux's avatar
      T: check consistency of T_messages.txt with VCD functions and variables traces · 55ba99ac
      Cedric Roux authored
      Since VCD has now to go through the T tracer, we enforce the consistency
      of data found in common/utils/LOG/vcd_signal_dumper.[ch] with data
      found in common/utils/T/T_messages.txt.
      
      We might get completely rid of common/utils/LOG/vcd_signal_dumper.[ch] at some
      point. For the moment, let's keep it.
      
      This commit adds the program common/utils/T/check_vcd.c and necessary
      modifications to enforce its use at compilation time.
      
      If you modify common/utils/LOG/vcd_signal_dumper.[ch] but do not update
      common/utils/T/T_messages.txt an error will pop up when you compile the
      software. You have to keep both modules synchronized.
      55ba99ac
  18. 13 Aug, 2018 1 commit
    • Cedric Roux's avatar
      T: improve error reporting · 072bb904
      Cedric Roux authored
      Use "error:" as prefix to error messages in genids.c
      to help looking for errors in case of failure of
      the build.
      072bb904