src/hotspot/share/runtime/os.cpp
changeset 49177 eebf559c9e0d
parent 49042 a04a9bee2431
child 49193 c3ec048aad63
--- a/src/hotspot/share/runtime/os.cpp	Tue Feb 13 15:48:23 2018 +0100
+++ b/src/hotspot/share/runtime/os.cpp	Tue Feb 27 18:17:57 2018 -0500
@@ -105,6 +105,14 @@
 #endif
 }
 
+int os::snprintf(char* buf, size_t len, const char* fmt, ...) {
+  va_list args;
+  va_start(args, fmt);
+  int result = os::vsnprintf(buf, len, fmt, args);
+  va_end(args);
+  return result;
+}
+
 // Fill in buffer with current local time as an ISO-8601 string.
 // E.g., yyyy-mm-ddThh:mm:ss-zzzz.
 // Returns buffer, or NULL if it failed.