Changeset 58991 in vbox for trunk/src/VBox/ExtPacks/VBoxDTrace/onnv/cmd
- Timestamp:
- Dec 4, 2015 3:22:36 PM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 104518
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ExtPacks/VBoxDTrace/onnv/cmd/dtrace/dtrace.c
r53974 r58991 156 156 static int g_quiet; 157 157 static int g_flowindent; 158 #ifdef VBOX /* Added volatile to signal handler variables. */ 159 static int volatile g_intr; 160 static int volatile g_impatient; 161 static int volatile g_newline; 162 #else 158 163 static int g_intr; 159 164 static int g_impatient; 160 165 static int g_newline; 166 #endif 161 167 static int g_total; 162 168 static int g_cflags; … … 1234 1240 if (g_intr++) 1235 1241 g_impatient = 1; 1242 #ifdef _MSC_VER 1243 /* Reinstall signal handler. Seems MSVCRT is System V style. */ 1244 signal(signo, intr); 1245 #endif 1236 1246 } 1237 1247 … … 1271 1281 1272 1282 g_ofp = stdout; 1273 g_pname = RTProcShortName();1283 g_pname = (char *)RTProcShortName(); 1274 1284 #endif 1275 1285
Note:
See TracChangeset
for help on using the changeset viewer.