Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 200787
b: refs/heads/master
c: c214909
h: refs/heads/master
i:
  200785: 2d6ab33
  200783: 41dbc1c
v: v3
  • Loading branch information
Gui Jianfeng authored and Arnaldo Carvalho de Melo committed Jul 1, 2010
1 parent 0d4b5a4 commit fca7944
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 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: a1e80fafc9f0742a1776a0490258cb64912411b0
refs/heads/master: c214909b36efec632432acdcbfacdd46a6e11370
11 changes: 10 additions & 1 deletion trunk/tools/perf/util/thread.c
Original file line number Diff line number Diff line change
Expand Up @@ -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];
Expand All @@ -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);
Expand Down

0 comments on commit fca7944

Please sign in to comment.