| 2033 | } |
| 2034 | |
| 2035 | int |
| 2036 | proc_getargv(struct thread *td, struct proc *p, struct sbuf *sb) |
| 2037 | { |
| 2038 | |
| 2039 | return (get_ps_strings(curthread, p, sb, PROC_ARG)); |
| 2040 | } |
| 2041 | |
| 2042 | int |
| 2043 | proc_getenvv(struct thread *td, struct proc *p, struct sbuf *sb) |
no test coverage detected