blob: e8b6e794e79cbdd19283944af073f76701a926f2 [file] [log] [blame]
// Licensed to the Apache Software Foundation (ASF) under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. The ASF licenses this file
// to you under the Apache License, Version 2.0 (the
// "License"); you may not use this file except in compliance
// with the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing,
// software distributed under the License is distributed on an
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
// KIND, either express or implied. See the License for the
// specific language governing permissions and limitations
// under the License.
#include "kudu/util/signal.h"
#include <glog/logging.h>
namespace kudu {
void SetSignalHandler(int signal, SignalHandlerCallback handler) {
struct sigaction act;
act.sa_handler = handler;
sigemptyset(&act.sa_mask);
act.sa_flags = 0;
PCHECK(sigaction(signal, &act, nullptr) == 0);
}
void IgnoreSigPipe() {
SetSignalHandler(SIGPIPE, SIG_IGN);
}
void ResetSigPipeHandlerToDefault() {
SetSignalHandler(SIGPIPE, SIG_DFL);
}
// We unblock all signal masks since they are inherited.
void ResetAllSignalMasksToUnblocked() {
sigset_t signals;
PCHECK(sigfillset(&signals) == 0);
PCHECK(sigprocmask(SIG_UNBLOCK, &signals, nullptr) == 0);
}
} // namespace kudu