Mercurial > hg
annotate 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 |
rev | line source |
---|---|
6239 | 1 # __init__.py - low-level interfaces to the Linux inotify subsystem |
2 | |
3 # Copyright 2006 Bryan O'Sullivan <bos@serpentine.com> | |
4 | |
5 # This library is free software; you can redistribute it and/or modify | |
6 # it under the terms of version 2.1 of the GNU Lesser General Public | |
7 # License, incorporated herein by reference. | |
8 | |
9 '''Low-level interface to the Linux inotify subsystem. | |
10 | |
11 The inotify subsystem provides an efficient mechanism for file status | |
12 monitoring and change notification. | |
13 | |
14 This package provides the low-level inotify system call interface and | |
15 associated constants and helper functions. | |
16 | |
17 For a higher-level interface that remains highly efficient, use the | |
18 inotify.watcher package.''' | |
19 | |
20 __author__ = "Bryan O'Sullivan <bos@serpentine.com>" | |
21 | |
22 from _inotify import * | |
23 | |
24 procfs_path = '/proc/sys/fs/inotify' | |
25 | |
26 def _read_procfs_value(name): | |
27 def read_value(): | |
28 try: | |
29 return int(open(procfs_path + '/' + name).read()) | |
7875
553aa0cbeab6
cleanup: drop unused assignments
Peter Arrenbrecht <peter.arrenbrecht@gmail.com>
parents:
6239
diff
changeset
|
30 except OSError: |
6239 | 31 return None |
32 | |
33 read_value.__doc__ = '''Return the value of the %s setting from /proc. | |
34 | |
35 If inotify is not enabled on this system, return None.''' % name | |
36 | |
37 return read_value | |
38 | |
39 max_queued_events = _read_procfs_value('max_queued_events') | |
40 max_user_instances = _read_procfs_value('max_user_instances') | |
41 max_user_watches = _read_procfs_value('max_user_watches') |