Skip to content

Commit

Permalink
patch to improve thread startup by Larry Campbell
Browse files Browse the repository at this point in the history
  • Loading branch information
rfm committed Jan 29, 2024
1 parent 1cf38de commit 41d948b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
5 changes: 5 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
2024-01-08 Richard Frith-Macdonald <[email protected]>

* Source/NSOperation.m: patch for issue #366 by Larry Campbell.

2024-01-08 Richard Frith-Macdonald <[email protected]>

* Source/NSJSONSerialization.m: Fix for issue #365 ... don't try to
create a string ending with the first half of a unicode surrogate pair.

2024-01-08 Richard Frith-Macdonald <[email protected]>

* Source/NSNotificationCenter.m: fix for memory leak should keep the
Expand Down
6 changes: 1 addition & 5 deletions Source/NSOperation.m
Original file line number Diff line number Diff line change
Expand Up @@ -1112,17 +1112,13 @@ - (void) _execute
}
else
{
NSUInteger pending;

[internal->cond lock];
pending = [internal->starting count];
[internal->starting addObject: op];

/* Create a new thread if all existing threads are busy and
* we haven't reached the pool limit.
*/
if (0 == internal->threadCount
|| (pending > 0 && internal->threadCount < max))
if (internal->threadCount < max)
{
internal->threadCount++;
NS_DURING
Expand Down

0 comments on commit 41d948b

Please sign in to comment.