summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/event.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/bb/event.py')
-rw-r--r--bitbake/lib/bb/event.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/bitbake/lib/bb/event.py b/bitbake/lib/bb/event.py
index 1116c0a7bf..20923b5f08 100644
--- a/bitbake/lib/bb/event.py
+++ b/bitbake/lib/bb/event.py
@@ -312,6 +312,14 @@ class BuildCompleted(BuildBase, OperationCompleted):
312 OperationCompleted.__init__(self, total, "Building Failed") 312 OperationCompleted.__init__(self, total, "Building Failed")
313 BuildBase.__init__(self, n, p, failures) 313 BuildBase.__init__(self, n, p, failures)
314 314
315class DiskFull(Event):
316 """Disk full case build aborted"""
317 def __init__(self, dev, type, freespace, mountpoint):
318 Event.__init__(self)
319 self._dev = dev
320 self._type = type
321 self._free = freespace
322 self._mountpoint = mountpoint
315 323
316class NoProvider(Event): 324class NoProvider(Event):
317 """No Provider for an Event""" 325 """No Provider for an Event"""