diff options
author | rockot <rockot@chromium.org> | 2015-01-05 20:27:49 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-01-06 04:28:43 +0000 |
commit | 84b8c80778fa2c728470c557c379ef34a1b525b0 (patch) | |
tree | 86562f30b06e2046efe90b7c1694ced1c4f451a4 /mojo/public/cpp/system/handle.h | |
parent | d1896bcd60222e0999da63947ec60af7506c73d7 (diff) | |
download | chromium_src-84b8c80778fa2c728470c557c379ef34a1b525b0.zip chromium_src-84b8c80778fa2c728470c557c379ef34a1b525b0.tar.gz chromium_src-84b8c80778fa2c728470c557c379ef34a1b525b0.tar.bz2 |
Update mojo sdk to rev e3719475d5971283d1d2250533d53066b2ff9797
Includes diff from comment #6 at
https://codereview.chromium.org/803173009
BUG=None
TBR=darin@chromium.org
TBR=jamesr@chromium.org
Review URL: https://codereview.chromium.org/835253002
Cr-Commit-Position: refs/heads/master@{#310049}
Diffstat (limited to 'mojo/public/cpp/system/handle.h')
-rw-r--r-- | mojo/public/cpp/system/handle.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mojo/public/cpp/system/handle.h b/mojo/public/cpp/system/handle.h index 3549854..021fa87 100644 --- a/mojo/public/cpp/system/handle.h +++ b/mojo/public/cpp/system/handle.h @@ -301,7 +301,7 @@ inline WaitManyResult WaitMany(const HandleVectorType& handles, if (signals.size() != handles.size()) return WaitManyResult(MOJO_RESULT_INVALID_ARGUMENT); if (handles.size() >= kInvalidWaitManyIndexValue) - return WaitManyResult(MOJO_RESULT_OUT_OF_RANGE); + return WaitManyResult(MOJO_RESULT_RESOURCE_EXHAUSTED); if (handles.size() == 0) { return WaitManyResult( |