summaryrefslogtreecommitdiff
path: root/init/signal_handler.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'init/signal_handler.cpp')
-rw-r--r--init/signal_handler.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/init/signal_handler.cpp b/init/signal_handler.cpp
index 183837b57..db1bfcf8c 100644
--- a/init/signal_handler.cpp
+++ b/init/signal_handler.cpp
@@ -25,6 +25,9 @@
#include "init.h"
#include "service.h"
+namespace android {
+namespace init {
+
static int signal_write_fd = -1;
static int signal_read_fd = -1;
@@ -64,3 +67,6 @@ void signal_handler_init() {
register_epoll_handler(signal_read_fd, handle_signal);
}
+
+} // namespace init
+} // namespace android