~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/chk_map.py

  • Committer: Robert Collins
  • Date: 2010-07-04 06:22:11 UTC
  • mto: This revision was merged to the branch mainline in revision 5332.
  • Revision ID: robertc@robertcollins.net-20100704062211-tk9hw6bnsn5x47fm
``bzrlib.lsprof.profile`` will no longer silently generate bad threaded
profiles when concurrent profile requests are made. Instead the profile
requests will be serialised. Reentrant requests will now deadlock.
(Robert Collins)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1727
1727
 
1728
1728
try:
1729
1729
    from bzrlib._chk_map_pyx import (
 
1730
        _bytes_to_text_key,
1730
1731
        _search_key_16,
1731
1732
        _search_key_255,
1732
1733
        _deserialise_leaf_node,
1735
1736
except ImportError, e:
1736
1737
    osutils.failed_to_load_extension(e)
1737
1738
    from bzrlib._chk_map_py import (
 
1739
        _bytes_to_text_key,
1738
1740
        _search_key_16,
1739
1741
        _search_key_255,
1740
1742
        _deserialise_leaf_node,