From 53e2eaba7a19cda3183b1bb2a2619a2494538e52 Mon Sep 17 00:00:00 2001 From: "Feng, Bob C" Date: Mon, 9 Sep 2019 09:12:28 +0800 Subject: BaseTools: Fixed build clean regression issue BZ: https://bugzilla.tianocore.org/show_bug.cgi?id=2166 file_lock and cache_lock are used as global data, so move file_lock and cache_lock initialization in Build object __init__ function. Cc: Liming Gao Cc: Steven Shi Signed-off-by: Bob Feng Reviewed-by: Liming Gao --- BaseTools/Source/Python/build/build.py | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to 'BaseTools/Source') diff --git a/BaseTools/Source/Python/build/build.py b/BaseTools/Source/Python/build/build.py index 0406ac314b..cf82c29b7e 100755 --- a/BaseTools/Source/Python/build/build.py +++ b/BaseTools/Source/Python/build/build.py @@ -812,23 +812,21 @@ class Build(): os.chdir(self.WorkspaceDir) GlobalData.gCacheIR = Manager().dict() self.log_q = log_q + GlobalData.file_lock = mp.Lock() + GlobalData.cache_lock = mp.Lock() def StartAutoGen(self,mqueue, DataPipe,SkipAutoGen,PcdMaList,share_data): try: if SkipAutoGen: return True,0 feedback_q = mp.Queue() - file_lock = mp.Lock() error_event = mp.Event() - GlobalData.file_lock = file_lock - cache_lock = mp.Lock() - GlobalData.cache_lock = cache_lock FfsCmd = DataPipe.Get("FfsCommand") if FfsCmd is None: FfsCmd = {} GlobalData.FfsCmd = FfsCmd GlobalData.libConstPcd = DataPipe.Get("LibConstPcd") GlobalData.Refes = DataPipe.Get("REFS") - auto_workers = [AutoGenWorkerInProcess(mqueue,DataPipe.dump_file,feedback_q,file_lock,cache_lock,share_data,self.log_q,error_event) for _ in range(self.ThreadNumber)] + auto_workers = [AutoGenWorkerInProcess(mqueue,DataPipe.dump_file,feedback_q,GlobalData.file_lock,GlobalData.cache_lock,share_data,self.log_q,error_event) for _ in range(self.ThreadNumber)] self.AutoGenMgr = AutoGenManager(auto_workers,feedback_q,error_event) self.AutoGenMgr.start() for w in auto_workers: -- cgit v1.2.3