Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 147601
b: refs/heads/master
c: 4593bba
h: refs/heads/master
i:
  147599: ac19616
v: v3
  • Loading branch information
Ingo Molnar committed Jun 2, 2009
1 parent 54b63cb commit 026674e
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 28 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 97124d5e2df5b9eaa5bb684bb1e8ebc7e29d0f5d
refs/heads/master: 4593bba8679b925a056f84edac061676e7eda71c
55 changes: 28 additions & 27 deletions trunk/Documentation/perf_counter/builtin-report.c
Original file line number Diff line number Diff line change
Expand Up @@ -84,24 +84,25 @@ static struct dso *dsos__findnew(const char *name)
struct dso *dso = dsos__find(name);
int nr;

if (dso == NULL) {
dso = dso__new(name, 0);
if (!dso)
goto out_delete_dso;

nr = dso__load(dso, NULL);
if (nr < 0) {
fprintf(stderr, "Failed to open: %s\n", name);
goto out_delete_dso;
}
if (!nr) {
fprintf(stderr,
"Failed to find debug symbols for: %s, maybe install a debug package?\n",
name);
}
if (dso)
return dso;

dso = dso__new(name, 0);
if (!dso)
goto out_delete_dso;

dsos__add(dso);
nr = dso__load(dso, NULL);
if (nr < 0) {
fprintf(stderr, "Failed to open: %s\n", name);
goto out_delete_dso;
}
if (!nr && verbose) {
fprintf(stderr,
"No symbols found in: %s, maybe install a debug package?\n",
name);
}

dsos__add(dso);

return dso;

Expand Down Expand Up @@ -302,11 +303,11 @@ sort__thread_cmp(struct hist_entry *left, struct hist_entry *right)
static size_t
sort__thread_print(FILE *fp, struct hist_entry *self)
{
return fprintf(fp, " %16s:%5d", self->thread->comm ?: "", self->thread->pid);
return fprintf(fp, " %16s:%5d", self->thread->comm ?: "", self->thread->pid);
}

static struct sort_entry sort_thread = {
.header = " Command: Pid ",
.header = " Command: Pid ",
.cmp = sort__thread_cmp,
.print = sort__thread_print,
};
Expand All @@ -332,11 +333,11 @@ sort__comm_cmp(struct hist_entry *left, struct hist_entry *right)
static size_t
sort__comm_print(FILE *fp, struct hist_entry *self)
{
return fprintf(fp, " %16s", self->thread->comm ?: "<unknown>");
return fprintf(fp, " %16s", self->thread->comm ?: "<unknown>");
}

static struct sort_entry sort_comm = {
.header = " Command",
.header = " Command",
.cmp = sort__comm_cmp,
.print = sort__comm_print,
};
Expand All @@ -362,11 +363,11 @@ sort__dso_cmp(struct hist_entry *left, struct hist_entry *right)
static size_t
sort__dso_print(FILE *fp, struct hist_entry *self)
{
return fprintf(fp, " %64s", self->dso ? self->dso->name : "<unknown>");
return fprintf(fp, " %s", self->dso ? self->dso->name : "<unknown>");
}

static struct sort_entry sort_dso = {
.header = " Shared Object",
.header = " Shared Object",
.cmp = sort__dso_cmp,
.print = sort__dso_print,
};
Expand All @@ -391,17 +392,17 @@ sort__sym_print(FILE *fp, struct hist_entry *self)
size_t ret = 0;

if (verbose)
ret += fprintf(fp, " %#018llx", (unsigned long long)self->ip);
ret += fprintf(fp, " %#018llx", (unsigned long long)self->ip);

ret += fprintf(fp, " %s: %s",
ret += fprintf(fp, " %s: %s",
self->dso ? self->dso->name : "<unknown>",
self->sym ? self->sym->name : "<unknown>");

return ret;
}

static struct sort_entry sort_sym = {
.header = "Shared Object: Symbol",
.header = " Shared Object: Symbol",
.cmp = sort__sym_cmp,
.print = sort__sym_print,
};
Expand Down Expand Up @@ -595,8 +596,8 @@ static size_t output__fprintf(FILE *fp, uint64_t total_samples)
list_for_each_entry(se, &hist_entry__sort_list, list) {
int i;

fprintf(fp, " ");
for (i = 0; i < strlen(se->header); i++)
fprintf(fp, " ");
for (i = 0; i < strlen(se->header)-1; i++)
fprintf(fp, ".");
}
fprintf(fp, "\n");
Expand Down

0 comments on commit 026674e

Please sign in to comment.