diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-05-23 10:50:30 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-05-24 10:34:53 +0100 |
commit | 507d5cc2ccab6e1bff4731cfee663f615dc7ed57 (patch) | |
tree | c79f941d5b67db9d866928b3cfdcd125607937e9 /bitbake/lib/bb/event.py | |
parent | ea346917910734b6a9e537f83bd26b18cd3bf4f0 (diff) | |
download | poky-507d5cc2ccab6e1bff4731cfee663f615dc7ed57.tar.gz |
bitbake: cooker/cookerdata/event: Improve class handlers management
Similarly to the execution context changes, establish better lifetime
management API of the class event handlers.
(Bitbake rev: 54e35a6cceead9521f8b1dacd48e55064e85c8bd)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb/event.py')
-rw-r--r-- | bitbake/lib/bb/event.py | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/bitbake/lib/bb/event.py b/bitbake/lib/bb/event.py index 11c063fcc8..2826e3554f 100644 --- a/bitbake/lib/bb/event.py +++ b/bitbake/lib/bb/event.py | |||
@@ -50,8 +50,17 @@ class Event(object): | |||
50 | Registered = 10 | 50 | Registered = 10 |
51 | AlreadyRegistered = 14 | 51 | AlreadyRegistered = 14 |
52 | 52 | ||
53 | def get_class_handlers(): | ||
54 | return _handlers | ||
55 | |||
56 | def set_class_handlers(h): | ||
57 | _handlers = h | ||
58 | |||
59 | def clean_class_handlers(): | ||
60 | return bb.compat.OrderedDict() | ||
61 | |||
53 | # Internal | 62 | # Internal |
54 | _handlers = bb.compat.OrderedDict() | 63 | _handlers = clean_class_handlers() |
55 | _ui_handlers = {} | 64 | _ui_handlers = {} |
56 | _ui_handler_seq = 0 | 65 | _ui_handler_seq = 0 |
57 | 66 | ||