aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsin <sin@2f30.org>2014-12-04 15:03:45 +0000
committersin <sin@2f30.org>2014-12-04 15:03:45 +0000
commit73428b2daf892400348c71bfeda6c3092db91738 (patch)
tree139a9685dd16802755b8d5982e8b1bb117204f88
parent20bae3a21d90690fa32355a91d7833ba743a96cd (diff)
Style fix
-rw-r--r--sinit.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/sinit.c b/sinit.c
index e338f35..eb834f6 100644
--- a/sinit.c
+++ b/sinit.c
@@ -9,18 +9,18 @@
#define LEN(x) (sizeof (x) / sizeof *(x))
-static void sigpoweroff(void);
-static void sigreap(void);
-static void sigreboot(void);
+static void poweroff(void);
+static void reap(void);
+static void reboot(void);
static void spawn(char *const []);
static struct {
int sig;
void (*handler)(void);
} sigmap[] = {
- { SIGUSR1, sigpoweroff },
- { SIGCHLD, sigreap },
- { SIGINT, sigreboot },
+ { SIGUSR1, poweroff },
+ { SIGCHLD, reap },
+ { SIGINT, reboot },
};
#include "config.h"
@@ -53,20 +53,20 @@ main(void)
}
static void
-sigpoweroff(void)
+poweroff(void)
{
spawn(rcpoweroffcmd);
}
static void
-sigreap(void)
+reap(void)
{
while (waitpid(-1, NULL, WNOHANG) > 0)
;
}
static void
-sigreboot(void)
+reboot(void)
{
spawn(rcrebootcmd);
}