Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(90)

Side by Side Diff: webrtc/system_wrappers/source/event_timer_posix.h

Issue 1476453002: Clean up PlatformThread. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: IsRunning DCHECK Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2011 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2011 The WebRTC project authors. All Rights Reserved.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license 4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source 5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found 6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may 7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree. 8 * be found in the AUTHORS file in the root of the source tree.
9 */ 9 */
10 10
(...skipping 28 matching lines...) Expand all
39 private: 39 private:
40 static bool Run(void* obj); 40 static bool Run(void* obj);
41 bool Process(); 41 bool Process();
42 EventTypeWrapper Wait(timespec* end_at); 42 EventTypeWrapper Wait(timespec* end_at);
43 43
44 private: 44 private:
45 pthread_cond_t cond_; 45 pthread_cond_t cond_;
46 pthread_mutex_t mutex_; 46 pthread_mutex_t mutex_;
47 bool event_set_; 47 bool event_set_;
48 48
49 rtc::scoped_ptr<PlatformThread> timer_thread_; 49 // TODO(pbos): Remove scoped_ptr and use PlatformThread directly.
50 rtc::scoped_ptr<rtc::PlatformThread> timer_thread_;
50 rtc::scoped_ptr<EventTimerPosix> timer_event_; 51 rtc::scoped_ptr<EventTimerPosix> timer_event_;
51 timespec created_at_; 52 timespec created_at_;
52 53
53 bool periodic_; 54 bool periodic_;
54 unsigned long time_; // In ms 55 unsigned long time_; // In ms
55 unsigned long count_; 56 unsigned long count_;
56 }; 57 };
57 58
58 } // namespace webrtc 59 } // namespace webrtc
59 60
60 #endif // WEBRTC_SYSTEM_WRAPPERS_SOURCE_EVENT_POSIX_H_ 61 #endif // WEBRTC_SYSTEM_WRAPPERS_SOURCE_EVENT_POSIX_H_
OLDNEW
« no previous file with comments | « webrtc/system_wrappers/source/data_log.cc ('k') | webrtc/system_wrappers/source/event_timer_posix.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698