Changeset 63207 in vbox for trunk/src/VBox/ExtPacks/VBoxDTrace/onnv/cmd
- Timestamp:
- Aug 9, 2016 2:25:27 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ExtPacks/VBoxDTrace/onnv/cmd/dtrace/dtrace.c
r63129 r63207 356 356 } 357 357 358 #ifndef VBOX 358 359 static char ** 359 360 make_argv(char *s) … … 376 377 return (argv); 377 378 } 379 #endif /* !VBOX */ 378 380 379 381 static void … … 1254 1256 /* Reinstall signal handler. Seems MSVCRT is System V style. */ 1255 1257 signal(signo, intr); 1258 #else 1259 RT_NOREF(signo); 1256 1260 #endif 1257 1261 } … … 1715 1719 * may been affected by any library options set by the second pass. 1716 1720 */ 1717 # ifndef VBOX1721 # ifndef VBOX 1718 1722 for (optind = 1; optind < argc; optind++) { 1719 1723 while ((c = getopt(argc, argv, DTRACE_OPTSTR)) != EOF) { 1720 # else1724 # else 1721 1725 RTGetOptInit(&GetState, argc, argv, g_aOptions, RT_ELEMENTS(g_aOptions), 1, 0); 1722 1726 while ((c = RTGetOpt(&GetState, &ValueUnion))) { 1723 1727 { 1724 1728 char *optarg = (char *)ValueUnion.psz; 1725 # endif1729 # endif 1726 1730 switch (c) { 1727 1731 case 'c':
Note:
See TracChangeset
for help on using the changeset viewer.