File tree 2 files changed +2
-4
lines changed
src/coreclr/debug/createdump 2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -100,7 +100,7 @@ typedef struct
100
100
int Pid;
101
101
int CrashThread;
102
102
int Signal;
103
- #if defined(HOST_UNIX) && !defined(HOST_OSX)
103
+ #if defined(HOST_UNIX)
104
104
int SignalCode;
105
105
int SignalErrno;
106
106
void * SignalAddress;
Original file line number Diff line number Diff line change @@ -70,7 +70,7 @@ int __cdecl main(const int argc, const char* argv[])
70
70
options.Signal = 0 ;
71
71
options.CrashThread = 0 ;
72
72
options.Pid = 0 ;
73
- #if defined(HOST_UNIX) && !defined(HOST_OSX)
73
+ #if defined(HOST_UNIX)
74
74
options.SignalCode = 0 ;
75
75
options.SignalErrno = 0 ;
76
76
options.SignalAddress = nullptr ;
@@ -161,7 +161,6 @@ int __cdecl main(const int argc, const char* argv[])
161
161
{
162
162
g_checkForSingleFile = true ;
163
163
}
164
- #ifndef HOST_OSX
165
164
else if (strcmp (*argv, " --code" ) == 0 )
166
165
{
167
166
options.SignalCode = atoi (*++argv);
@@ -174,7 +173,6 @@ int __cdecl main(const int argc, const char* argv[])
174
173
{
175
174
options.SignalAddress = (void *)atoll (*++argv);
176
175
}
177
- #endif
178
176
#endif
179
177
else if ((strcmp (*argv, " -d" ) == 0 ) || (strcmp (*argv, " --diag" ) == 0 ))
180
178
{
You can’t perform that action at this time.
0 commit comments