Skip to content
Snippets Groups Projects
Commit b4f1082c authored by Vladimír Čunát's avatar Vladimír Čunát
Browse files

Merge !677: main: locally disable a gcc warning since !672

parents 38ed462b f41ae543
No related branches found
No related tags found
1 merge request!677main: locally disable a gcc warning since !672
Pipeline #40614 passed with warnings
......@@ -311,6 +311,9 @@ static void sigbus_handler(int sig, siginfo_t *siginfo, void *ptr)
*/
#define WRITE_ERR(err_charray) \
(void)write(STDERR_FILENO, err_charray, sizeof(err_charray))
/* Unfortunately, void-cast on the write isn't enough to avoid the warning. */
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wunused-result"
const char msg_typical[] =
"\nSIGBUS received; this is most likely due to filling up the filesystem where cache resides.\n",
msg_unknown[] = "\nSIGBUS received, cause unknown.\n",
......@@ -332,6 +335,7 @@ static void sigbus_handler(int sig, siginfo_t *siginfo, void *ptr)
WRITE_ERR(msg_final);
_exit(128 - sig); /*< regular return from OS-raised SIGBUS can't work anyway */
#undef WRITE_ERR
#pragma GCC diagnostic pop
}
/** Split away port from the address. */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment