]> git.ipfire.org Git - thirdparty/squid.git/blame - src/tests/stub_EventLoop.cc
SourceFormat Enforcement
[thirdparty/squid.git] / src / tests / stub_EventLoop.cc
CommitLineData
4e0938ef 1/*
4ac4a490 2 * Copyright (C) 1996-2017 The Squid Software Foundation and contributors
4e0938ef
AJ
3 *
4 * Squid software is distributed under GPLv2+ license and includes
5 * contributions from numerous individuals and organizations.
6 * Please see the COPYING and CONTRIBUTORS files for details.
7 */
8
0a720258
AR
9#include "squid.h"
10#include "EventLoop.h"
11
12#define STUB_API "EventLoop.cc"
13#include "tests/STUB.h"
14
15EventLoop *EventLoop::Running = NULL;
16
17EventLoop::EventLoop(): errcount(0), last_loop(false), timeService(NULL),
f53969cc
SM
18 primaryEngine(NULL), loop_delay(0), error(false), runOnceResult(false)
19 STUB_NOP
20
21 void EventLoop::registerEngine(AsyncEngine *engine) STUB
0a720258 22