Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 3d689ed6 authored by Arnaldo Carvalho de Melo's avatar Arnaldo Carvalho de Melo
Browse files

perf tools: Move sane ctype stuff from util.h to sane_ctype.h

More stuff that came from git, out of the hodge-podge that is util.h

Cc: Adrian Hunter <adrian.hunter@intel.com>
Cc: David Ahern <dsahern@gmail.com>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Wang Nan <wangnan0@huawei.com>
Link: http://lkml.kernel.org/n/tip-e3lana4gctz3ub4hn4y29hkw@git.kernel.org


Signed-off-by: default avatarArnaldo Carvalho de Melo <acme@redhat.com>
parent 28a9bb96
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
#include <ctype.h>
#include "symbol/kallsyms.h"
#include <stdio.h>
#include <stdlib.h>
+2 −0
Original line number Diff line number Diff line
@@ -4,6 +4,8 @@
#include "../util/util.h"
#include "../util/debug.h"

#include "sane_ctype.h"

const char *const arm_triplets[] = {
	"arm-eabi-",
	"arm-linux-androideabi-",
+2 −0
Original line number Diff line number Diff line
@@ -27,6 +27,8 @@
#include <locale.h>
#include <regex.h>

#include "sane_ctype.h"

static int	kmem_slab;
static int	kmem_page;

+2 −0
Original line number Diff line number Diff line
@@ -34,6 +34,8 @@
#include <api/fs/fs.h>
#include <linux/time64.h>

#include "sane_ctype.h"

#define PR_SET_NAME		15               /* Set process name */
#define MAX_CPUS		4096
#define COMM_LEN		20
+2 −0
Original line number Diff line number Diff line
@@ -32,6 +32,8 @@
#include "util/dump-insn.h"
#include <inttypes.h>

#include "sane_ctype.h"

static char const		*script_name;
static char const		*generate_script_lang;
static bool			debug_mode;
Loading