Commit 2d160748 authored by Andrei Alexandrescu's avatar Andrei Alexandrescu Committed by Alecs King

Removing call to google::setThreadName from FunctionScheduler

Summary: Funnily, google::setThreadName is Facebook specific: it's introduced only in the FB build of glog. This diff removes the call because folly should not depend on FB's glog.

Test Plan: made sure the line was deleted

Reviewed By: ldbrandy@fb.com

Subscribers: net-systems@, folly-diffs@, yfeldblum

FB internal diff: D1868249

Tasks: 6345935

Signature: t1:1868249:1424812595:2a084754d614ab9b7b6168454f33638882e3f6db
parent da22f9c3
...@@ -189,7 +189,6 @@ void FunctionScheduler::run() { ...@@ -189,7 +189,6 @@ void FunctionScheduler::run() {
if (!threadName_.empty()) { if (!threadName_.empty()) {
folly::setThreadName(threadName_); folly::setThreadName(threadName_);
google::setThreadName(threadName_);
} }
while (running_) { while (running_) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment