mirror of
https://github.com/valitydev/osquery-1.git
synced 2024-11-07 18:08:53 +00:00
12 lines
332 B
C++
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();
|
|
}
|