]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blobdiff - gdb/nbsd-nat.c
Implement IP_MINIMAL and IP_ALL on NetBSD
[thirdparty/binutils-gdb.git] / gdb / nbsd-nat.c
index fa49ac26c9bfa4ede635163c053041b902b8b4c0..5eaf9dec8afc2c6528cb23d101edb5ab975d42e5 100644 (file)
@@ -347,6 +347,11 @@ nbsd_nat_target::info_proc (const char *args, enum info_proc_what what)
 
   switch (what)
     {
+    case IP_MINIMAL:
+      do_cmdline = true;
+      do_cwd = true;
+      do_exe = true;
+      break;
     case IP_MAPPINGS:
       do_mappings = true;
       break;
@@ -359,6 +364,12 @@ nbsd_nat_target::info_proc (const char *args, enum info_proc_what what)
     case IP_CWD:
       do_cwd = true;
       break;
+    case IP_ALL:
+      do_cmdline = true;
+      do_cwd = true;
+      do_exe = true;
+      do_mappings = true;
+      break;
     default:
       error (_("Not supported on this target."));
     }