1. 01 9月, 2013 1 次提交
  2. 23 8月, 2013 1 次提交
  3. 29 7月, 2013 1 次提交
  4. 04 7月, 2013 2 次提交
  5. 07 6月, 2013 1 次提交
  6. 30 4月, 2013 2 次提交
  7. 09 4月, 2013 3 次提交
  8. 01 3月, 2013 1 次提交
    • P
      hw: include hw header files with full paths · 83c9f4ca
      Paolo Bonzini 提交于
      Done with this script:
      
      cd hw
      for i in `find . -name '*.h' | sed 's/^..//'`; do
        echo '\,^#.*include.*["<]'$i'[">], s,'$i',hw/&,'
      done | sed -i -f - `find . -type f`
      
      This is so that paths remain valid as files are moved.
      
      Instead, files in hw/dataplane are referenced with the relative path.
      We know they are not going to move to include/, and they are the only
      include files that are in subdirectories _and_ move.
      Signed-off-by: NPaolo Bonzini <pbonzini@redhat.com>
      83c9f4ca
  9. 19 12月, 2012 1 次提交
  10. 08 2月, 2012 1 次提交
  11. 21 12月, 2011 2 次提交
  12. 24 9月, 2011 1 次提交
  13. 21 8月, 2011 1 次提交
  14. 21 3月, 2011 1 次提交
    • P
      change all other clock references to use nanosecond resolution accessors · 74475455
      Paolo Bonzini 提交于
      This was done with:
      
          sed -i 's/qemu_get_clock\>/qemu_get_clock_ns/' \
              $(git grep -l 'qemu_get_clock\>' )
          sed -i 's/qemu_new_timer\>/qemu_new_timer_ns/' \
              $(git grep -l 'qemu_new_timer\>' )
      
      after checking that get_clock and new_timer never occur twice
      on the same line.  There were no missed occurrences; however, even
      if there had been, they would have been caught by the compiler.
      
      There was exactly one false positive in qemu_run_timers:
      
           -    current_time = qemu_get_clock (clock);
           +    current_time = qemu_get_clock_ns (clock);
      
      which is of course not in this patch.
      Signed-off-by: NPaolo Bonzini <pbonzini@redhat.com>
      74475455
  15. 11 9月, 2009 1 次提交
  16. 20 6月, 2009 1 次提交
  17. 14 5月, 2009 2 次提交
  18. 12 5月, 2009 1 次提交
  19. 06 2月, 2009 1 次提交
  20. 04 12月, 2008 1 次提交
  21. 17 12月, 2007 1 次提交
  22. 03 12月, 2007 2 次提交
  23. 18 11月, 2007 1 次提交
  24. 08 4月, 2007 1 次提交
  25. 05 7月, 2006 1 次提交
  26. 21 11月, 2005 1 次提交
  27. 06 11月, 2005 1 次提交
  28. 31 10月, 2005 1 次提交
  29. 10 11月, 2004 1 次提交
  30. 08 11月, 2004 1 次提交