diff options
Diffstat (limited to 'bitbake/lib/bb/ui/uievent.py')
| -rw-r--r-- | bitbake/lib/bb/ui/uievent.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/bitbake/lib/bb/ui/uievent.py b/bitbake/lib/bb/ui/uievent.py index 13d0d4a04c..8607d0523b 100644 --- a/bitbake/lib/bb/ui/uievent.py +++ b/bitbake/lib/bb/ui/uievent.py | |||
| @@ -11,9 +11,13 @@ server and queue them for the UI to process. This process must be used to avoid | |||
| 11 | client/server deadlocks. | 11 | client/server deadlocks. |
| 12 | """ | 12 | """ |
| 13 | 13 | ||
| 14 | import socket, threading, pickle, collections | 14 | import collections, logging, pickle, socket, threading |
| 15 | from xmlrpc.server import SimpleXMLRPCServer, SimpleXMLRPCRequestHandler | 15 | from xmlrpc.server import SimpleXMLRPCServer, SimpleXMLRPCRequestHandler |
| 16 | 16 | ||
| 17 | import bb | ||
| 18 | |||
| 19 | logger = logging.getLogger(__name__) | ||
| 20 | |||
| 17 | class BBUIEventQueue: | 21 | class BBUIEventQueue: |
| 18 | def __init__(self, BBServer, clientinfo=("localhost, 0")): | 22 | def __init__(self, BBServer, clientinfo=("localhost, 0")): |
| 19 | 23 | ||
