2016-05-14 11:31:40 -07:00
|
|
|
/*
|
|
|
|
|
* Copyright 2016 The WebRTC Project Authors. All rights reserved.
|
|
|
|
|
*
|
|
|
|
|
* Use of this source code is governed by a BSD-style license
|
|
|
|
|
* that can be found in the LICENSE file in the root of the source
|
|
|
|
|
* tree. An additional intellectual property rights grant can be found
|
|
|
|
|
* in the file PATENTS. All contributing project authors may
|
|
|
|
|
* be found in the AUTHORS file in the root of the source tree.
|
|
|
|
|
*/
|
|
|
|
|
|
2017-09-15 06:47:31 +02:00
|
|
|
#ifndef RTC_BASE_TASK_QUEUE_POSIX_H_
|
|
|
|
|
#define RTC_BASE_TASK_QUEUE_POSIX_H_
|
2016-05-14 11:31:40 -07:00
|
|
|
|
2017-06-29 07:52:50 +02:00
|
|
|
#include <pthread.h>
|
2016-05-14 11:31:40 -07:00
|
|
|
|
2017-06-29 07:52:50 +02:00
|
|
|
namespace rtc {
|
|
|
|
|
|
|
|
|
|
class TaskQueue;
|
|
|
|
|
|
|
|
|
|
namespace internal {
|
|
|
|
|
|
|
|
|
|
class AutoSetCurrentQueuePtr {
|
|
|
|
|
public:
|
|
|
|
|
explicit AutoSetCurrentQueuePtr(TaskQueue* q);
|
|
|
|
|
~AutoSetCurrentQueuePtr();
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
TaskQueue* const prev_;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
pthread_key_t GetQueuePtrTls();
|
|
|
|
|
|
|
|
|
|
} // namespace internal
|
|
|
|
|
} // namespace rtc
|
2016-05-14 11:31:40 -07:00
|
|
|
|
2017-09-15 06:47:31 +02:00
|
|
|
#endif // RTC_BASE_TASK_QUEUE_POSIX_H_
|