1
2
3
4
5
6
7
8
9
10
11
12
|
#compdef gprof
_arguments -s -{a,b,c,D,h,i,l,L,s,T,v,w,x,y,z} \
-{A,C,e,E,f,F,J,n,N,O,p,P,q,Q,Z}:'function name: _exec_funcs' \
'-I:directory:_dir_list' \
'-d-:debug level:' '-k:function names: _exec_funcs -p' \
'-m:minimum execution count:' \
':executable:_files -g *(*)' \
':profile file:_files -g gmon.*' \
-- -s '(#--[no-] --)' \
'*=name*:function name: _exec_funcs' \
'*=dirs*:directory:_dir_list'
|