1. 31 3月, 2012 1 次提交
  2. 27 3月, 2012 1 次提交
  3. 26 3月, 2012 1 次提交
  4. 24 3月, 2012 1 次提交
    • M
      Support utf8 chars in pod docs · 3179d694
      Michael Tokarev 提交于
      We've at least one UTF8 char in the qemu texi doc:
      
       $ grep Tibor qemu-doc.texi
       by Tibor "TS" Schütz.
       $ man ./qemu.1 | grep Tibor
              by Tibor "TS" SchA~Xtz.
      
      This patch allows utf8 in man/pod docs.
      
      Initially it was split into two parts and sent on 2012-02-02.
      Resending it again (3rd time) now in merged form.  If any
      other generalizations of $(POD2MAN) are needed it can be done
      in a separate patch.  Current form of $(POD2MAN) is choosen
      to be able to easily change it if some implementation does
      not support utf8 or resulting output has issues with local
      man(1) program/macros.
      
      First, add @documentencoding in scripts/texi2pod.pl:
      
      Currently our texi2pod ignores @documentencoding even if it is set
      properly in *.texi files.  This results in a mojibake in documents
      generated from qemu.pod (which is generated from qemu-doc.texi by
      texi2pod), because the rest of the tools assumes ASCII encoding.
      
      This patch recognizes first @documentencoding in input and places
      it at the beginning of output as =encoding directive.
      
      Second, run pod2man with --utf8 option to enable utf8 in manpages:
      
      This option makes no difference for manpages which contains only
      ascii chars.  But for manpages with actual UTF8 characters (qemu
      docs contains these), this change allows to see real characters
      instead of mojibakes or substitutes.
      Signed-off-By: NMichael Tokarev <mjt@tls.msk.ru>
      Signed-off-by: NBlue Swirl <blauwirbel@gmail.com>
      3179d694
  5. 14 3月, 2012 1 次提交
  6. 11 3月, 2012 1 次提交
  7. 24 2月, 2012 2 次提交
  8. 22 2月, 2012 1 次提交
  9. 18 2月, 2012 1 次提交
  10. 10 2月, 2012 1 次提交
  11. 02 2月, 2012 2 次提交
  12. 28 1月, 2012 1 次提交
    • A
      qom: add the base Object class (v2) · 2f28d2ff
      Anthony Liguori 提交于
      This class provides the main building block for QEMU Object Model and is
      extensively documented in the header file.  It is largely inspired by GObject.
      Signed-off-by: NAnthony Liguori <aliguori@us.ibm.com>
      ---
      v1 -> v2
       - remove printf() in type registration
       - fix typo in comment (Paolo)
       - make Interface private
       - move object into a new directory and move header into include/qemu/
       - don't make object.h depend on qemu-common.h
       - remove Type and replace it with TypeImpl * (Paolo)
       - use hash table to store types (Paolo)
       - aggressively cache parent type (Paolo)
       - make a type_register and use it with interfaces (Paolo)
       - fix interface cast comment (Paolo)
       - add a few more functions required in later series
      2f28d2ff
  13. 19 1月, 2012 2 次提交
  14. 13 1月, 2012 4 次提交
  15. 04 1月, 2012 3 次提交
  16. 27 12月, 2011 1 次提交
    • A
      Fix qapi code generation wrt parallel build · 8d3bc517
      Avi Kivity 提交于
      Make's multiple output syntax
      
        x.c x.h: x.template
             gen < x.template
      
      actually invokes the command once for x.c and once for x.h (with differing $@
      in each invocation).  During a parallel build, the two commands may be invoked
      in parallel; this opens up a race, where the second invocation trashes a file
      supposedly produced during the first, and now in use by a dependent command.
      
      The various qapi code generators are susceptible to this; fix by making them
      generate just one file per invocation.
      Signed-off-by: NAvi Kivity <avi@redhat.com>
      Signed-off-by: NAnthony Liguori <aliguori@us.ibm.com>
      8d3bc517
  17. 22 12月, 2011 1 次提交
  18. 06 12月, 2011 3 次提交
  19. 30 11月, 2011 1 次提交
  20. 29 11月, 2011 1 次提交
  21. 23 11月, 2011 1 次提交
  22. 18 11月, 2011 4 次提交
  23. 08 11月, 2011 1 次提交
  24. 02 11月, 2011 2 次提交
  25. 26 10月, 2011 1 次提交
  26. 08 10月, 2011 1 次提交