From fca79448899b287898e5f04e23519e020b0972c3 Mon Sep 17 00:00:00 2001 From: Gui Jianfeng Date: Wed, 16 Jun 2010 13:21:44 +0800 Subject: [PATCH] --- yaml --- r: 200787 b: refs/heads/master c: c214909b36efec632432acdcbfacdd46a6e11370 h: refs/heads/master i: 200785: 2d6ab33249e7040aa2b2393a30b5adeccbcf4744 200783: 41dbc1c72ba1a751cb47aeb8b3f51469a7cd534c v: v3 --- [refs] | 2 +- trunk/tools/perf/util/thread.c | 11 ++++++++++- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/[refs] b/[refs] index d651957df3e8..3fd2c58020d0 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: a1e80fafc9f0742a1776a0490258cb64912411b0 +refs/heads/master: c214909b36efec632432acdcbfacdd46a6e11370 diff --git a/trunk/tools/perf/util/thread.c b/trunk/tools/perf/util/thread.c index 1f7ecd47f499..9a448b47400c 100644 --- a/trunk/tools/perf/util/thread.c +++ b/trunk/tools/perf/util/thread.c @@ -7,6 +7,15 @@ #include "util.h" #include "debug.h" +/* Skip "." and ".." directories */ +static int filter(const struct dirent *dir) +{ + if (dir->d_name[0] == '.') + return 0; + else + return 1; +} + int find_all_tid(int pid, pid_t ** all_tid) { char name[256]; @@ -16,7 +25,7 @@ int find_all_tid(int pid, pid_t ** all_tid) int i; sprintf(name, "/proc/%d/task", pid); - items = scandir(name, &namelist, NULL, NULL); + items = scandir(name, &namelist, filter, NULL); if (items <= 0) return -ENOENT; *all_tid = malloc(sizeof(pid_t) * items);