From f475cf7b6c7de8970196755517e95831eb8e6b4b Mon Sep 17 00:00:00 2001 From: Cary Coutant Date: Mon, 17 Oct 2011 23:43:18 +0000 Subject: * readsyms.cc (Read_symbols::run): Don't queue an unblocker task for members of lib groups. --- gold/readsyms.cc | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'gold/readsyms.cc') diff --git a/gold/readsyms.cc b/gold/readsyms.cc index 1e50942..9974722 100644 --- a/gold/readsyms.cc +++ b/gold/readsyms.cc @@ -161,8 +161,10 @@ void Read_symbols::run(Workqueue* workqueue) { // If we didn't queue a new task, then we need to explicitly unblock - // the token. - if (!this->do_read_symbols(workqueue)) + // the token. If the object is a member of a lib group, however, + // the token was already added to the list of locks for the task, + // and it will be unblocked automatically at the end of the task. + if (!this->do_read_symbols(workqueue) && this->member_ == NULL) workqueue->queue_soon(new Unblock_token(this->this_blocker_, this->next_blocker_)); } -- cgit v1.1