Skip to content

Commit

Permalink
Simplify queue creation
Browse files Browse the repository at this point in the history
  • Loading branch information
russellhancox committed May 9, 2024
1 parent 7758ee6 commit b8af61a
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions Source/santad/EventProviders/SNTEndpointSecurityClient.mm
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,7 @@ - (instancetype)initWithESAPI:(std::shared_ptr<EndpointSecurityAPI>)esApi

_notifyQueue = dispatch_queue_create(
"com.google.santa.daemon.notify_queue",
dispatch_queue_attr_make_with_qos_class(DISPATCH_QUEUE_CONCURRENT_WITH_AUTORELEASE_POOL,
QOS_CLASS_DEFAULT, 0));
DISPATCH_QUEUE_CONCURRENT_WITH_AUTORELEASE_POOL);
}
return self;
}
Expand Down

0 comments on commit b8af61a

Please sign in to comment.