random cleanup

This commit is contained in:
rusefi 2019-04-15 19:24:46 -04:00
parent 37c12b573c
commit 5340d9dce2
2 changed files with 1 additions and 6 deletions

View File

@ -10,10 +10,6 @@
bool_t debugSignalExecutor = false;
TestExecutor::TestExecutor() {
}
void TestExecutor::scheduleForLater(scheduling_s *scheduling, int delayUs, schfunc_t callback, void *param) {
if (debugSignalExecutor) {
printf("scheduleTask %d\r\n", delayUs);

View File

@ -1,5 +1,5 @@
/*
* global_execution_queue.h
* @file global_execution_queue.h
*
* Created on: Jan 9, 2019
* @author Andrey Belomutskiy, (c) 2012-2019
@ -13,7 +13,6 @@
class TestExecutor : public ExecutorInterface {
public:
TestExecutor();
void scheduleByTimestamp(scheduling_s *scheduling, efitimeus_t timeUs, schfunc_t callback, void *param);
void scheduleForLater(scheduling_s *scheduling, int delayUs, schfunc_t callback, void *param);
void clear();