mirror of
https://github.com/zeek/zeek.git
synced 2025-10-13 20:18:20 +00:00
EventTraceMgr: Rename etm to event_trace_mgr
Mostly to avoid having new maintainers/developers knowing about yet another abbreviation.
This commit is contained in:
parent
1465e390a2
commit
5bcf6bec52
6 changed files with 15 additions and 15 deletions
|
@ -3868,8 +3868,8 @@ ValPtr ScheduleExpr::Eval(Frame* f) const {
|
|||
if ( args ) {
|
||||
auto handler = event->Handler();
|
||||
|
||||
if ( etm )
|
||||
etm->ScriptEventQueued(handler);
|
||||
if ( event_trace_mgr )
|
||||
event_trace_mgr->ScriptEventQueued(handler);
|
||||
|
||||
timer_mgr->Add(new ScheduleTimer(handler, std::move(*args), dt));
|
||||
}
|
||||
|
@ -4474,8 +4474,8 @@ ValPtr EventExpr::Eval(Frame* f) const {
|
|||
auto v = eval_list(f, args.get());
|
||||
|
||||
if ( handler ) {
|
||||
if ( etm )
|
||||
etm->ScriptEventQueued(handler);
|
||||
if ( event_trace_mgr )
|
||||
event_trace_mgr->ScriptEventQueued(handler);
|
||||
|
||||
event_mgr.Enqueue(handler, std::move(*v));
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue