3 #include <sys/sysctl.h>
9 #include <WINGs/WUtil.h>
15 * copy argc and argv for an existing process identified by `pid'
16 * into suitable storage given in ***argv and *argc.
18 * subsequent calls use the same static area for argv and argc.
20 * returns 0 for failure, in which case argc := 0 and argv := NULL
21 * returns 1 for success
23 Bool
GetCommandForPid(int pid
, char ***argv
, int *argc
)
29 static char *args
= NULL
;
30 static int argmax
= 0;
35 /* the system-wide limit */
36 if (argmax
== 0) { /* it hopefully doesn't change at runtime *g* */
42 count
= sizeof(argmax
);
43 if (sysctl(mib
, 2, &argmax
, &count
, NULL
, 0) == -1)
47 /* if argmax is still 0, something went very seriously wrong */
50 /* space for args; no need to free before returning even on errors */
52 args
= (char *)wmalloc(argmax
);
54 /* get process args */
56 mib
[1] = KERN_PROCARGS2
;
60 if (sysctl(mib
, 3, args
, &count
, NULL
, 0) == -1 || count
== 0)
64 memcpy(argc
, args
, sizeof(*argc
));
67 while (args
[idx
++] != '\0') /* skip execname */
69 while (args
[idx
] == '\0') /* padding too */
71 /* args[idx] is at at begininng of args now */
73 *argv
= (char **)wmalloc(sizeof(char *) * (*argc
+ 1 /* term. null ptr */));
74 (*argv
)[0] = args
+ idx
;
76 /* go through args, set argv[$next] to the beginning of each string */
77 for (i
= 0, j
= 1; i
< count
- idx
/* do not overrun */; i
++) {
78 if (args
[idx
+ i
] != '\0')
80 if (args
[idx
+ i
] == '\0')
81 (*argv
)[j
++] = &args
[idx
+ i
+ 1];
86 /* the list of arguments must be terminated by a null pointer */
90 #else /* !KERN_PROCARGS2 */