diff options
author | Dave Barach <dave@barachs.net> | 2020-08-19 06:59:53 -0400 |
---|---|---|
committer | Dave Barach <dave@barachs.net> | 2020-08-19 07:04:36 -0400 |
commit | e09ae01f6777434f41ba8a5a564c8078565ecfea (patch) | |
tree | 5cdea178576d79d1a8803401fb1e42cf1270a6f4 /src/tools/g2 | |
parent | 5c1cba5401b499b80bd46e783b5a444f18991922 (diff) |
vppinfra: minor tweaks for cgo interoperation
'type' is a keyword in golang, so s/type/event_type/ in elog.h and
elsewhere.
Add vec_len_not_inline(...), elog_write_file_not_inline(...) and
elog_read_file_not_inline(...) since the inline forms aren't usable.
More such tweaks may follow.
Type: improvement
Signed-off-by: Dave Barach <dave@barachs.net>
Change-Id: I9a80a6afa635f5cdedee554ee9abe400fafc1cb6
Diffstat (limited to 'src/tools/g2')
-rw-r--r-- | src/tools/g2/clib.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/g2/clib.c b/src/tools/g2/clib.c index da9fd52c2d0..3cfc2637673 100644 --- a/src/tools/g2/clib.c +++ b/src/tools/g2/clib.c @@ -141,7 +141,7 @@ int read_clib_file(char *clib_file) delta = ep->time - starttime; - add_clib_event (delta, ep->track, ep->type + 1, i); + add_clib_event (delta, ep->track, ep->event_type + 1, i); } cpel_event_finalize(); |