mirror of
https://github.com/zeek/zeek.git
synced 2025-10-06 16:48:19 +00:00
Remove all of the random single-file deprecations
These are the changes that don't require a ton of changes to other files outside of the original removal.
This commit is contained in:
parent
7e9d89db0a
commit
0618be792f
270 changed files with 36 additions and 4632 deletions
28
src/Event.cc
28
src/Event.cc
|
@ -94,34 +94,6 @@ EventMgr::~EventMgr()
|
|||
Unref(src_val);
|
||||
}
|
||||
|
||||
void EventMgr::QueueEventFast(const EventHandlerPtr &h, ValPList vl,
|
||||
util::detail::SourceID src, analyzer::ID aid, detail::TimerMgr* mgr,
|
||||
Obj* obj)
|
||||
{
|
||||
QueueEvent(new Event(h, val_list_to_args(vl), src, aid, obj));
|
||||
}
|
||||
|
||||
void EventMgr::QueueEvent(const EventHandlerPtr &h, ValPList vl,
|
||||
util::detail::SourceID src, analyzer::ID aid,
|
||||
detail::TimerMgr* mgr, Obj* obj)
|
||||
{
|
||||
auto args = val_list_to_args(vl);
|
||||
|
||||
if ( h )
|
||||
Enqueue(h, std::move(args), src, aid, obj);
|
||||
}
|
||||
|
||||
void EventMgr::QueueEvent(const EventHandlerPtr &h, ValPList* vl,
|
||||
util::detail::SourceID src, analyzer::ID aid,
|
||||
detail::TimerMgr* mgr, Obj* obj)
|
||||
{
|
||||
auto args = val_list_to_args(*vl);
|
||||
delete vl;
|
||||
|
||||
if ( h )
|
||||
Enqueue(h, std::move(args), src, aid, obj);
|
||||
}
|
||||
|
||||
void EventMgr::Enqueue(const EventHandlerPtr& h, Args vl,
|
||||
util::detail::SourceID src,
|
||||
analyzer::ID aid, Obj* obj)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue