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

Side by Side Diff: runtime/bin/utils_win.cc

Issue 9699017: Start better error reporting for sockets (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Added tests Created 8 years, 9 months 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 #include <errno.h> 5 #include <errno.h>
6 6
7 #include "bin/utils.h" 7 #include "bin/utils.h"
8 8
9 OSError::OSError() : code_(0), message_(NULL) { 9 OSError::OSError() : sub_system_(kSystem), code_(0), message_(NULL) {
10 set_code(GetLastError()); 10 set_code(GetLastError());
11 11
12 static const int kMaxMessageLength = 256; 12 static const int kMaxMessageLength = 256;
13 char message[kMaxMessageLength]; 13 char message[kMaxMessageLength];
14 DWORD message_size = 14 DWORD message_size =
15 FormatMessage(FORMAT_MESSAGE_FROM_SYSTEM | FORMAT_MESSAGE_IGNORE_INSERTS, 15 FormatMessage(FORMAT_MESSAGE_FROM_SYSTEM | FORMAT_MESSAGE_IGNORE_INSERTS,
16 NULL, 16 NULL,
17 code_, 17 code_,
18 MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT), 18 MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT),
19 message, 19 message,
20 kMaxMessageLength, 20 kMaxMessageLength,
21 NULL); 21 NULL);
22 if (message_size == 0) { 22 if (message_size == 0) {
23 if (GetLastError() != ERROR_INSUFFICIENT_BUFFER) { 23 if (GetLastError() != ERROR_INSUFFICIENT_BUFFER) {
24 fprintf(stderr, "FormatMessage failed %d\n", GetLastError()); 24 fprintf(stderr, "FormatMessage failed %d\n", GetLastError());
25 } 25 }
26 snprintf(message, kMaxMessageLength, "OS Error %d", code_); 26 snprintf(message, kMaxMessageLength, "OS Error %d", code_);
27 } 27 }
28 message[kMaxMessageLength - 1] = '\0'; 28 message[kMaxMessageLength - 1] = '\0';
29 29
30 SetMessage(message); 30 SetMessage(message);
31 } 31 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698