update docs
This commit is contained in:
25
C/analyst.c
25
C/analyst.c
@@ -853,8 +853,33 @@ void
|
||||
Yap_InitAnalystPreds(void)
|
||||
{
|
||||
Yap_InitCPred("wam_profiler_reset_op_counters", 0, p_reset_op_counters, SafePredFlag |SyncPredFlag);
|
||||
/** @pred wam_profiler_reset_op_counters
|
||||
|
||||
|
||||
Reinitialize all counters.
|
||||
|
||||
|
||||
*/
|
||||
Yap_InitCPred("wam_profiler_show_op_counters", 1, p_show_op_counters, SafePredFlag|SyncPredFlag);
|
||||
/** @pred wam_profiler_show_op_counters(+ _A_)
|
||||
|
||||
|
||||
Display the current value for the counters, using label _A_. The
|
||||
label must be an atom.
|
||||
|
||||
|
||||
*/
|
||||
Yap_InitCPred("wam_profiler_show_ops_by_group", 1, p_show_ops_by_group, SafePredFlag |SyncPredFlag);
|
||||
/** @pred wam_profiler_show_ops_by_group(+ _A_)
|
||||
|
||||
|
||||
Display the current value for the counters, organized by groups, using
|
||||
label _A_. The label must be an atom.
|
||||
|
||||
|
||||
|
||||
|
||||
*/
|
||||
Yap_InitCPred("wam_profiler_show_sequences", 1, p_show_sequences, SafePredFlag |SyncPredFlag);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user