osquery-1/include/osquery/scheduler.h
2014-09-15 11:26:16 -07:00

12 lines
332 B
C++

// Copyright 2004-present Facebook. All Rights Reserved.
#pragma once
namespace osquery {
// initialize is the entry point for osquery's scheduler. One needs to simply
// launch a new thread with `initialize` as the target and the scheduler will
// begin executing and aggregating scheduled queries
void initializeScheduler();
}