diff options
Diffstat (limited to 'bitbake/lib/bb/event.py')
-rw-r--r-- | bitbake/lib/bb/event.py | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/bitbake/lib/bb/event.py b/bitbake/lib/bb/event.py index fec6a05b38..ba0de11cd2 100644 --- a/bitbake/lib/bb/event.py +++ b/bitbake/lib/bb/event.py | |||
@@ -497,6 +497,16 @@ class TargetsTreeGenerated(Event): | |||
497 | Event.__init__(self) | 497 | Event.__init__(self) |
498 | self._model = model | 498 | self._model = model |
499 | 499 | ||
500 | class ReachableStamps(Event): | ||
501 | """ | ||
502 | An event listing all stamps reachable after parsing | ||
503 | which the metadata may use to clean up stale data | ||
504 | """ | ||
505 | |||
506 | def __init__(self, stamps): | ||
507 | Event.__init__(self) | ||
508 | self.stamps = stamps | ||
509 | |||
500 | class FilesMatchingFound(Event): | 510 | class FilesMatchingFound(Event): |
501 | """ | 511 | """ |
502 | Event when a list of files matching the supplied pattern has | 512 | Event when a list of files matching the supplied pattern has |