search for: opt_name

Displaying 2 results from an estimated 2 matches for "opt_name".

Did you mean: op_name
2009 Sep 05
2
[LLVMdev] code analysis bug
..."1$" and "2$" modifiers. This is POSIX for a while, intended for I18N, but perfectly usable for other purposes. Like generating shell code. static char const zLoopEnd[] = " if [ -n \"${OPT_ARG_VAL}\" ]\n" " then\n" " eval %1$s_${OPT_NAME}${OPT_ELEMENT}=\"'${OPT_ARG_VAL}'\"\n" " export %1$s_${OPT_NAME}${OPT_ELEMENT}\n" " fi\n" "done\n\n" "unset OPT_PROCESS || :\n" "unset OPT_ELEMENT || :\n" "unset OPT_ARG || :\n" "unset OPT_ARG_NEEDED |...
2009 Sep 17
3
dtrace predicat
Hi, I''m a nub in dtrace, could you please help me to find the mistake? I need to implement the logic: - if PID and TID are defined, fire the probe for the particular thread of particular process; - if only PID is defined, fire the probe for the process including all threads. The predicat [i]syscall:::entry / (pid == PID && tid == TID )[/i] / works ok and return syscall for