Forked from
Eclipse Projects / Eclipse Titan / titan.core
252 commits behind, 45 commits ahead of the upstream repository.
-
Adam Knapp authored
Signed-off-by:
Adam Knapp <adam.knapp@ericsson.com>
Adam Knapp authoredSigned-off-by:
Adam Knapp <adam.knapp@ericsson.com>
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
Stopwatch.hh 994 B
/******************************************************************************
* Copyright (c) 2000-2023 Ericsson Telecom AB
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.html
*
* Contributors:
* Balasko, Jeno
* Raduly, Csaba
*
******************************************************************************/
#ifndef STOPWATCH_HH_
#define STOPWATCH_HH_
#include <sys/time.h>
class Stopwatch {
public:
Stopwatch(const char *name);
~Stopwatch();
private:
struct timeval tv_start;
const char *my_name; // not owned
private:
Stopwatch(const Stopwatch&); // no copy
Stopwatch& operator=(const Stopwatch&); // no assignment
};
#ifdef NDEBUG
#define STOPWATCH(s) ((void)(s))
#else
#define STOPWATCH(s) Stopwatch chrono_meter(s)
#endif
#endif /* STOPWATCH_HH_ */