summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'logd/LogTimes.cpp')
-rw-r--r--logd/LogTimes.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/logd/LogTimes.cpp b/logd/LogTimes.cpp
index c32ac2dce..1a9a548f4 100644
--- a/logd/LogTimes.cpp
+++ b/logd/LogTimes.cpp
@@ -14,6 +14,8 @@
14 * limitations under the License. 14 * limitations under the License.
15 */ 15 */
16 16
17#include <sys/prctl.h>
18
17#include "FlushCommand.h" 19#include "FlushCommand.h"
18#include "LogBuffer.h" 20#include "LogBuffer.h"
19#include "LogTimes.h" 21#include "LogTimes.h"
@@ -107,6 +109,8 @@ void LogTimeEntry::threadStop(void *obj) {
107} 109}
108 110
109void *LogTimeEntry::threadStart(void *obj) { 111void *LogTimeEntry::threadStart(void *obj) {
112 prctl(PR_SET_NAME, "logd.reader.per");
113
110 LogTimeEntry *me = reinterpret_cast<LogTimeEntry *>(obj); 114 LogTimeEntry *me = reinterpret_cast<LogTimeEntry *>(obj);
111 115
112 pthread_cleanup_push(threadStop, obj); 116 pthread_cleanup_push(threadStop, obj);