core: fix order of parameters in broadcast_signal()

This commit is contained in:
Lennart Poettering
2013-11-25 23:03:03 +01:00
parent 0fc5ab9057
commit 6301a98cdf
2 changed files with 2 additions and 2 deletions

View File

@@ -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;

View File

@@ -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);