zsh-workers
 help / color / mirror / code / Atom feed
* [PATCH] update _gcore (support darwin)
@ 2021-04-06 15:55 Jun. T
  0 siblings, 0 replies; only message in thread
From: Jun. T @ 2021-04-06 15:55 UTC (permalink / raw)
  To: zsh-workers

Add support for macOS, with small updates for GNU (accept multiple pids).


diff --git a/Completion/Unix/Command/_gcore b/Completion/Unix/Command/_gcore
index 07a65cd9a..913ef25ca 100644
--- a/Completion/Unix/Command/_gcore
+++ b/Completion/Unix/Command/_gcore
@@ -49,10 +49,20 @@ case $OSTYPE in
       '::executable:' \
       ':pid:_pids'
   ;;
+  darwin*)
+    _arguments -s -A '-*' \
+      '-s[suspend the process while the core file is captured]' \
+      '-v[report progress on the dump as it proceeds]' \
+      '-b+[specify maximum size of core file]:size (MiB): ' \
+      '(-c)-o+[write core file to specified file]:file:_files' \
+      '(-o)-c+[specify format of core file name]:format:{_message "%%N\:program name, %%U\:uid, %%P\:pid, %%T\:time stamp"}' \
+      '1:pid:_pids'
+  ;;
   *)
     # GNU GDB gcore
-    _arguments \
-      '-o[set core file base name]:file base name:_files' \
-      ':pid:_pids'
+    _arguments -s -A '-*' \
+      '-a[dump all memory mappings]' \
+      '-o+[set core file base name]:file base name:_files' \
+      '*:pid:_pids'
   ;;
 esac







^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2021-04-06 15:56 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-04-06 15:55 [PATCH] update _gcore (support darwin) Jun. T

Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/zsh/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).