diff options
Diffstat (limited to 'gdb/nat/linux-osdata.c')
-rw-r--r-- | gdb/nat/linux-osdata.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/nat/linux-osdata.c b/gdb/nat/linux-osdata.c index 5589814..d27ddc5 100644 --- a/gdb/nat/linux-osdata.c +++ b/gdb/nat/linux-osdata.c @@ -324,7 +324,7 @@ get_core_array_size () /* Using /sys/.../possible is preferred, because it handles the case where we are in a container that has access to a subset of the host's cores. It will return a size that considers all the CPU cores available to the - host. If that fials for some reason, fall back to sysconf. */ + host. If that fails for some reason, fall back to sysconf. */ gdb::optional<size_t> count = get_core_array_size_using_sys_possible (); if (count.has_value ()) return *count; |