~xnox/androidos/platform-system-core

« back to all changes in this revision

Viewing changes to liblog/logd_reader.c

  • Committer: Gerrit Code Review
  • Author(s): Mark Salyzyn
  • Date: 2017-02-03 15:26:14 UTC
  • mfrom: (6634.1.3)
  • Revision ID: git-v1:98a6db5c9bb6497c5f9a71570a39659c366342b9
Merge changes I69e6489d,Ic17d52a7

* changes:
  liblog: add android_lookupEventTagNum
  liblog: add /dev/event-log-tags for Tag Map

Show diffs side-by-side

added added

removed removed

Lines of Context:
37
37
 
38
38
#include "config_read.h"
39
39
#include "log_portability.h"
 
40
#include "logd_reader.h"
40
41
#include "logger.h"
41
42
 
42
43
/* branchless on many architectures. */
324
325
    return ret;
325
326
}
326
327
 
 
328
LIBLOG_HIDDEN ssize_t __send_log_msg(char *buf, size_t buf_size)
 
329
{
 
330
    return send_log_msg(NULL, NULL, buf, buf_size);
 
331
}
 
332
 
327
333
static int check_log_success(char *buf, ssize_t ret)
328
334
{
329
335
    if (ret < 0) {