We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6fe2aae commit 33cf4daCopy full SHA for 33cf4da
storage/innobase/os/os0thread.cc
@@ -148,7 +148,7 @@ os_thread_create_func(
148
fprintf(stderr,
149
"InnoDB: Error: pthread_attr_init() returned %d\n",
150
ret);
151
- exit(1);
+ abort();
152
}
153
#endif
154
@@ -165,7 +165,7 @@ os_thread_create_func(
165
166
"InnoDB: Error: pthread_attr_setstacksize"
167
" returned %d\n", ret);
168
169
170
171
os_mutex_enter(os_sync_mutex);
@@ -180,7 +180,7 @@ os_thread_create_func(
180
if (UNIV_UNLIKELY(ret)) {
181
182
"InnoDB: Error: pthread_create() returned %d\n", ret);
183
184
185
186
#ifndef UNIV_HPUX10
0 commit comments