Changeset 75793 in vbox for trunk/src/VBox/Main/webservice
- Timestamp:
- Nov 28, 2018 5:26:57 PM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 126996
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/webservice/webtest.cpp
r69500 r75793 27 27 #include <string> 28 28 29 /* TEMPORARY! */ 30 #if defined(_MSC_VER) && !defined(RT_ARCH_AMD64) && defined(DEBUG) 31 void wastesomecodespace(int a, int b, int c) 32 { 33 for (int i = 0; i < c ; i++) 34 a = a * b * c; 35 } 36 #endif 29 #include <iprt/initterm.h> 30 #include <iprt/message.h> 31 37 32 38 33 static void usage(int exitcode) … … 87 82 const char *pcszArgEndpoint = "http://localhost:18083/"; 88 83 84 /* SSL callbacks drag in IPRT sem/thread use, so make sure it is ready. */ 85 int rc = RTR3InitExe(argc, &argv, 0); 86 if (RT_FAILURE(rc)) 87 return RTMsgInitFailure(rc); 88 89 89 int ap; 90 90 for (ap = 1; ap < argc; ap++)
Note:
See TracChangeset
for help on using the changeset viewer.