Mercurial > hg
view hgext/inotify/linux/__init__.py @ 8695:9a89253a32e6
heads: show closed heads only when --closed is passed
Add a --closed (-c) option to 'hg heads' to show all heads and change the
default behavior to refrain from showing fully closed branches.
Enhance 'hg heads <branch>' so that:
* default: displays normal & inactive heads, not closed heads
* --closed: displays normal, inactive & closed heads
* --active: displays only normal heads
* both --closed and --active: displays normal & closed heads only
author | John Mulligan <phlogistonjohn@asynchrono.us> |
---|---|
date | Wed, 03 Jun 2009 13:59:38 +0200 |
parents | 553aa0cbeab6 |
children | 25e572394f5c |
line wrap: on
line source
# __init__.py - low-level interfaces to the Linux inotify subsystem # Copyright 2006 Bryan O'Sullivan <bos@serpentine.com> # This library is free software; you can redistribute it and/or modify # it under the terms of version 2.1 of the GNU Lesser General Public # License, incorporated herein by reference. '''Low-level interface to the Linux inotify subsystem. The inotify subsystem provides an efficient mechanism for file status monitoring and change notification. This package provides the low-level inotify system call interface and associated constants and helper functions. For a higher-level interface that remains highly efficient, use the inotify.watcher package.''' __author__ = "Bryan O'Sullivan <bos@serpentine.com>" from _inotify import * procfs_path = '/proc/sys/fs/inotify' def _read_procfs_value(name): def read_value(): try: return int(open(procfs_path + '/' + name).read()) except OSError: return None read_value.__doc__ = '''Return the value of the %s setting from /proc. If inotify is not enabled on this system, return None.''' % name return read_value max_queued_events = _read_procfs_value('max_queued_events') max_user_instances = _read_procfs_value('max_user_instances') max_user_watches = _read_procfs_value('max_user_watches')