1. 16 4月, 2014 1 次提交
  2. 02 4月, 2014 1 次提交
  3. 11 3月, 2014 2 次提交
  4. 11 1月, 2014 1 次提交
  5. 21 12月, 2013 2 次提交
  6. 19 10月, 2013 1 次提交
  7. 14 10月, 2013 1 次提交
  8. 12 10月, 2013 1 次提交
    • G
      kernel: use skip list to implement timer list · d59aa279
      Grissiom 提交于
      Skip list is a "random" data structure that in high possibilities it
      would get O(log(N)) time complexity in inserting while the old list get
      O(N). Forthermore, when set RT_TIMER_SKIP_LIST_LEVEL to 1, it will just
      the same as the old double linked list, both in time and space
      complexity.
      
      Benchmarks shows that when RT_TIMER_SKIP_LIST_LEVEL is 3, the average
      time of random insertion of new timer is about 2 times faster than the
      old timer when there are 100 timers and 3 times faster when there are
      200 timers.
      
      However, it restores the deprecated funcion rt_system_timer_init. BSPs
      must invoke it upon system startup.
      d59aa279
  9. 11 10月, 2013 1 次提交
    • G
      kernel: add RT_DEBUG_IN_THREAD_CONTEXT · 6f71308e
      Grissiom 提交于
      In thread context means: 1) the scheduler has been started; 2) not in
      interrupt context. It is more stronger than RT_DEBUG_NOT_IN_INTERRUPT.
      With this commit, you will catch the error on situations like taking
      mutex before scheduling instead of crashing on NULL pointer reference.
      6f71308e
  10. 24 9月, 2013 1 次提交
  11. 23 9月, 2013 1 次提交
    • G
      kservice: export vsnprintf as rt_vsnprintf · 7b0a3afd
      Grissiom 提交于
      vsnprintf is a common string function that could be used in many places.
      Using both vsnprintf in libc and vsnprintf in the RTT could make a
      bigger image. Moreover, if newlib is not enabled when compiling with
      GCC, referencing vsnprintf will lead to link error:
      
          .../arm-none-eabi/lib/armv7-ar/thumb/softfp/libc.a(lib_a-sbrkr.o):
          In function `_sbrk_r':
          sbrkr.c:(.text._sbrk_r+0xc): undefined reference to `_sbrk'
          collect2: error: ld returned 1 exit status
      
      Using rt_vsnprintf could avoid such problem.
      7b0a3afd
  12. 14 9月, 2013 1 次提交
  13. 19 8月, 2013 1 次提交
  14. 22 7月, 2013 1 次提交
  15. 15 7月, 2013 1 次提交
  16. 11 7月, 2013 1 次提交
  17. 09 7月, 2013 1 次提交
    • G
      device: add ref_count support · 7bcce9e8
      Grissiom 提交于
      This is a simple work around to the current device stack design. A
      ref_count could let different modules to open/close the same device
      independently without interfere others in some degree.
      
      But there is still some data shared between the modules, like flag,
      open_flag and user_data. Moreover, it won't yield an error if A open a
      device, and B read from it before open it in B. Maybe alloc a new handle
      in rt_device_open will be the ultimate solution. But that is much bigger
      change and we may leave it to future development.
      7bcce9e8
  18. 29 6月, 2013 1 次提交
  19. 24 6月, 2013 2 次提交
  20. 23 6月, 2013 1 次提交
  21. 03 6月, 2013 1 次提交
  22. 25 4月, 2013 1 次提交
  23. 17 4月, 2013 1 次提交
  24. 10 4月, 2013 1 次提交
  25. 23 3月, 2013 1 次提交
  26. 17 1月, 2013 1 次提交
  27. 08 1月, 2013 1 次提交
  28. 31 12月, 2012 1 次提交
  29. 29 12月, 2012 1 次提交
  30. 25 12月, 2012 8 次提交