Change typedef of PlatformThreadRef for Fuchsia from pthread_t to zx_handle_t

Bug: webrtc:8893
Change-Id: I748e800f4b100b3bc3646c359e5240507ca0e03d
Tbr: guidou@webrtc.org
Reviewed-on: https://webrtc-review.googlesource.com/54307
Reviewed-by: Tommi <tommi@webrtc.org>
Reviewed-by: Guido Urdaneta <guidou@webrtc.org>
Commit-Queue: Tommi <tommi@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#22069}
This commit is contained in:
Tommi
2018-02-17 15:00:39 +01:00
committed by Commit Bot
parent 1f3f3c2d19
commit f017980ada

View File

@ -28,7 +28,7 @@ typedef DWORD PlatformThreadId;
typedef DWORD PlatformThreadRef;
#elif defined(WEBRTC_FUCHSIA)
typedef zx_handle_t PlatformThreadId;
typedef pthread_t PlatformThreadRef;
typedef zx_handle_t PlatformThreadRef;
#elif defined(WEBRTC_POSIX)
typedef pid_t PlatformThreadId;
typedef pthread_t PlatformThreadRef;