Rename log_monitor -> log_daemon

This commit is contained in:
topjohnwu 2018-07-06 07:57:18 +08:00
parent 46ee2c3f4e
commit f44b2dbd45
2 changed files with 3 additions and 3 deletions

View File

@ -40,7 +40,7 @@ LOCAL_C_INCLUDES := \
LOCAL_SRC_FILES := \
core/magisk.c \
core/daemon.c \
core/log_monitor.c \
core/log_daemon.c \
core/bootstages.c \
core/socket.c \
core/db.c \

View File

@ -1,7 +1,7 @@
/* log_monitor.c - New thread to monitor logcat
/* log_daemon.c - A dedicated daemon to monitor logcat
*
* A universal logcat monitor for many usages. Add listeners to the list,
* and the pointer of the new log line will be sent through pipes to trigger
* and the new log line will be sent through sockets to trigger
* asynchronous events without polling
*/