diff options
author | Craig Tiller <ctiller@google.com> | 2015-08-04 08:24:48 -0700 |
---|---|---|
committer | Craig Tiller <ctiller@google.com> | 2015-08-04 08:24:48 -0700 |
commit | 060ca5fe18c6008d2b71929f03117934d8ead469 (patch) | |
tree | 1eb48e947e047ea81e10c21484e8f9fb844e0836 /src/core | |
parent | a9c643fc602bda93d373694661e7e1f8f1ec72ac (diff) |
Update comment
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/iomgr/pollset_windows.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/iomgr/pollset_windows.h b/src/core/iomgr/pollset_windows.h index 8b51006c74..4efa5a1717 100644 --- a/src/core/iomgr/pollset_windows.h +++ b/src/core/iomgr/pollset_windows.h @@ -40,7 +40,8 @@ /* There isn't really any such thing as a pollset under Windows, due to the nature of the IO completion ports. A Windows "pollset" is merely a mutex - and a condition variable, used to synchronize with the IOCP. */ + used to synchronize with the IOCP, and workers are condition variables + used to block threads until work is ready. */ typedef struct grpc_pollset_worker { gpr_cv cv; |