shm_open failures are now on HIGH level in stead of FAIL level.
This commit is contained in:
parent
4aa4335354
commit
1f319cc782
1 changed files with 1 additions and 1 deletions
|
@ -445,7 +445,7 @@ namespace IPC {
|
||||||
}
|
}
|
||||||
if (handle == -1) {
|
if (handle == -1) {
|
||||||
if (!master_ && autoBackoff) {
|
if (!master_ && autoBackoff) {
|
||||||
FAIL_MSG("shm_open for page %s failed: %s", name.c_str(), strerror(errno));
|
HIGH_MSG("shm_open for page %s failed: %s", name.c_str(), strerror(errno));
|
||||||
}
|
}
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue