757585db71
Change-Id: Ibbb7d8500e9064215cf912bd00bdf72a748f8a27 Signed-off-by: Damjan Marion <damarion@cisco.com>
29 lines
565 B
EmacsLisp
29 lines
565 B
EmacsLisp
;;; elog-one-datum-skel.el - single u32 datum elog skeleton
|
|
|
|
(require 'skeleton)
|
|
|
|
(define-skeleton skel-elog-one-datum
|
|
"Insert a skeleton single datum event definition"
|
|
nil
|
|
'(setq function-name (skeleton-read "Function: "))
|
|
'(setq label (skeleton-read "Label: "))
|
|
|
|
"
|
|
|
|
/* $$$ May or may not be needed */
|
|
#include <vlib/vlib.h>
|
|
#include <vppinfra/elog.h>
|
|
|
|
static inline void " function-name " (u32 data)
|
|
{
|
|
ELOG_TYPE_DECLARE (e) =
|
|
{
|
|
.format = \"" label ": %d\",
|
|
.format_args = \"i4\",
|
|
};
|
|
|
|
elog (&vlib_global_main.elog_main, &e, data);
|
|
}
|
|
|
|
")
|