summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: cce1369)
raw | patch | inline | side by side (parent: cce1369)
author | Arthur Gautier <baloo@gandi.net> | |
Sat, 6 Jun 2015 21:06:25 +0000 (21:06 +0000) | ||
committer | Arthur Gautier <baloo@gandi.net> | |
Sat, 6 Jun 2015 21:06:25 +0000 (21:06 +0000) |
This commit partially revert 30eeeee996124de666f907877f8196e5580101ed
which solved incorrectly the merge conflict
Signed-off-by: Arthur Gautier <baloo@gandi.net>
which solved incorrectly the merge conflict
Signed-off-by: Arthur Gautier <baloo@gandi.net>
src/processes.c | patch | blob | history |
diff --git a/src/processes.c b/src/processes.c
index 9ae48dbd741adff2d7bb9fef10babb2682e3d8c4..a6c50965a041ce921c6d5cdd0cac342f33ad3adf 100644 (file)
--- a/src/processes.c
+++ b/src/processes.c
return (ps);
} /* int *ps_read_tasks_status */
-static int ps_read_tasks (int pid)
-{
- char dirname[64];
- DIR *dh;
- struct dirent *ent;
- int count = 0;
-
- ssnprintf (dirname, sizeof (dirname), "/proc/%i/task", pid);
-
- if ((dh = opendir (dirname)) == NULL)
- {
- DEBUG ("Failed to open directory `%s'", dirname);
- return (-1);
- }
-
- while ((ent = readdir (dh)) != NULL)
- {
- if (!isdigit ((int) ent->d_name[0]))
- continue;
- else
- count++;
- }
- closedir (dh);
-
- return ((count >= 1) ? count : 1);
-} /* int *ps_read_tasks */
-
/* Read data from /proc/pid/status */
static procstat_t *ps_read_status (int pid, procstat_t *ps)
{