e5389bb053
Change-Id: Ieb2e4043fc7bc3b4a5436a7a6aa35f573d8d4506 Signed-off-by: Dave Barach <dave@barachs.net>
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);
|
|
}
|
|
|
|
")
|