mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
Fix for the unixware: non-posix sigwait
server-tools/instance-manager/manager.cc: Use my_sigwait instead of sigwait
This commit is contained in:
@ -56,7 +56,7 @@ void manager(const char *socket_file_name)
|
||||
in the process.
|
||||
*/
|
||||
int signo;
|
||||
sigwait(&mask, &signo);
|
||||
my_sigwait(&mask, &signo);
|
||||
thread_repository.deliver_shutdown();
|
||||
/* don't pthread_exit to kill all threads who did not shut down in time */
|
||||
}
|
||||
|
Reference in New Issue
Block a user