diff options
Diffstat (limited to 'bitbake/lib/bb/utils.py')
-rw-r--r-- | bitbake/lib/bb/utils.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/bitbake/lib/bb/utils.py b/bitbake/lib/bb/utils.py index ebee65d3dd..0dfe47dc5a 100644 --- a/bitbake/lib/bb/utils.py +++ b/bitbake/lib/bb/utils.py | |||
@@ -1862,6 +1862,7 @@ def lock_timeout(lock): | |||
1862 | held = lock.acquire(timeout=5*60) | 1862 | held = lock.acquire(timeout=5*60) |
1863 | try: | 1863 | try: |
1864 | if not held: | 1864 | if not held: |
1865 | bb.server.process.serverlog("Couldn't get the lock for 5 mins, timed out, exiting.\n%s" % traceback.format_stack()) | ||
1865 | os._exit(1) | 1866 | os._exit(1) |
1866 | yield held | 1867 | yield held |
1867 | finally: | 1868 | finally: |