diff options
Diffstat (limited to 'gdb/common')
-rw-r--r-- | gdb/common/linux-osdata.c | 32 |
1 files changed, 17 insertions, 15 deletions
diff --git a/gdb/common/linux-osdata.c b/gdb/common/linux-osdata.c index 78659d4..a356bb8 100644 --- a/gdb/common/linux-osdata.c +++ b/gdb/common/linux-osdata.c @@ -259,27 +259,29 @@ get_cores_used_by_process (pid_t pid, int *cores) sprintf (taskdir, "/proc/%d/task", pid); dir = opendir (taskdir); - - while ((dp = readdir (dir)) != NULL) + if (dir) { - pid_t tid; - int core; + while ((dp = readdir (dir)) != NULL) + { + pid_t tid; + int core; - if (!isdigit (dp->d_name[0]) - || NAMELEN (dp) > sizeof ("4294967295") - 1) - continue; + if (!isdigit (dp->d_name[0]) + || NAMELEN (dp) > sizeof ("4294967295") - 1) + continue; - tid = atoi (dp->d_name); - core = linux_common_core_of_thread (ptid_build (pid, tid, 0)); + tid = atoi (dp->d_name); + core = linux_common_core_of_thread (ptid_build (pid, tid, 0)); - if (core >= 0) - { - ++cores[core]; - ++task_count; + if (core >= 0) + { + ++cores[core]; + ++task_count; + } } - } - closedir (dir); + closedir (dir); + } return task_count; } |