Changeset 171084 in webkit
- Timestamp:
- Jul 14, 2014, 2:37:21 PM (11 years ago)
- Location:
- trunk/Source/WebKit2
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebKit2/ChangeLog
r171080 r171084 1 2014-07-14 Carlos Alberto Lopez Perez <clopez@igalia.com> 2 3 [UNIX] Log error description when failing to create shared memory file. 4 https://bugs.webkit.org/show_bug.cgi?id=134892 5 6 Reviewed by Darin Adler. 7 8 * Platform/unix/SharedMemoryUnix.cpp: 9 (WebKit::SharedMemory::create): Print the string describing the error number (errno). 10 1 11 2014-07-14 Benjamin Poulain <benjamin@webkit.org> 2 12 -
trunk/Source/WebKit2/Platform/unix/SharedMemoryUnix.cpp
r167128 r171084 117 117 } 118 118 if (fileDescriptor == -1) { 119 WTFLogAlways("Failed to create shared memory file %s ", tempName.data());119 WTFLogAlways("Failed to create shared memory file %s: %s", tempName.data(), strerror(errno)); 120 120 return 0; 121 121 }
Note:
See TracChangeset
for help on using the changeset viewer.