search for: settrace

Displaying 3 results from an estimated 3 matches for "settrace".

Did you mean: set_trace
2016 Jul 13
2
Nested tracing with custom callback
Hi all, I would like to install a trace function that gets executed whenever *any* R function is called. In Python, for example, this functionality is provided by the `sys.settrace` function. I am not aware of any public interface, at the R or C level, that can accomplish this. The `trace` function is inadequate because it does not support nested functions. The `Rprof` function provides only statistical profiling. Any advice would be appreciated. I'm not afraid to dig i...
2006 Dec 11
0
Add option to TFTP client to ignore ':' in file name
...p-hpa-0.43x/tftp/main.c 2006-12-01 14:02:50.000000000 -0800 *************** *** 89,94 **** --- 89,95 ---- u_short port; int trace; int verbose; + int literal; int connected; const struct modes *mode; #ifdef WITH_READLINE *************** *** 116,121 **** --- 117,123 ---- void settrace (int, char **); void setverbose (int, char **); void status (int, char **); + void setliteral (int, char **); static void command (void); *************** *** 154,159 **** --- 156,164 ---- { "trace", "toggle packet tracing", settrace }, + { "lite...
2006 Dec 11
2
Add option to TFTP client to ignore ':' in file name (re-submit)
...p-hpa-0.44x/tftp/main.c 2006-12-11 11:54:19.445313000 -0800 *************** *** 89,94 **** --- 89,95 ---- u_short port; int trace; int verbose; + int literal; int connected; const struct modes *mode; #ifdef WITH_READLINE *************** *** 119,124 **** --- 120,126 ---- void settrace (int, char **); void setverbose (int, char **); void status (int, char **); + void setliteral (int, char **); static void command (void); *************** *** 157,162 **** --- 159,167 ---- { "trace", "toggle packet tracing", settrace }, + { "lite...