mirror of
https://github.com/systemd/systemd.git
synced 2026-08-03 22:50:29 +00:00
core: fix order of parameters in broadcast_signal()
This commit is contained in:
@@ -199,7 +199,7 @@ static int killall(int sig, Set *pids, bool send_sighup) {
|
||||
return set_size(pids);
|
||||
}
|
||||
|
||||
void broadcast_signal(int sig, bool send_sighup, bool wait_for_exit) {
|
||||
void broadcast_signal(int sig, bool wait_for_exit, bool send_sighup) {
|
||||
sigset_t mask, oldmask;
|
||||
Set *pids = NULL;
|
||||
|
||||
|
||||
@@ -21,4 +21,4 @@
|
||||
along with systemd; If not, see <http://www.gnu.org/licenses/>.
|
||||
***/
|
||||
|
||||
void broadcast_signal(int sig, bool wait, bool send_sighup);
|
||||
void broadcast_signal(int sig, bool wait_for_exit, bool send_sighup);
|
||||
|
||||
Reference in New Issue
Block a user