mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-neutrino.git
synced 2025-08-29 08:21:07 +02:00
Origin commit data
------------------
Branch: ni/coolstream
Commit: 9e1ba71ae8
Author: [CST] Focus <focus.cst@gmail.com>
Date: 2012-03-07 (Wed, 07 Mar 2012)
------------------
No further description and justification available within origin commit message!
------------------
This commit was generated by Migit
52 lines
1.5 KiB
C++
52 lines
1.5 KiB
C++
/*
|
|
* debug.cpp, Debug tools (sectionsd) - d-box2 linux project
|
|
*
|
|
* (C) 2003 by thegoodguy <thegoodguy@berlios.de>
|
|
*
|
|
* Copyright (C) 2011-2012 CoolStream International Ltd
|
|
*
|
|
* License: GPLv2
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation;
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
*
|
|
*/
|
|
#include <stdio.h>
|
|
#include <time.h>
|
|
#include <sys/time.h>
|
|
#include "debug.h"
|
|
|
|
bool sections_debug;
|
|
|
|
void printdate_ms(FILE *f) {
|
|
timeval now;
|
|
gettimeofday(&now, NULL);
|
|
struct tm *tm = localtime(&now.tv_sec);
|
|
/* use strftime for that? */
|
|
fprintf(f, "%02d:%02d:%02d.%03ld ", tm->tm_hour, tm->tm_min, tm->tm_sec, now.tv_usec/1000);
|
|
}
|
|
|
|
static int64_t last_profile_call;
|
|
|
|
void showProfiling( std::string text )
|
|
{
|
|
struct timeval tv;
|
|
|
|
gettimeofday( &tv, NULL );
|
|
int64_t now = (int64_t) tv.tv_usec + (int64_t)((int64_t) tv.tv_sec * (int64_t) 1000000);
|
|
|
|
int64_t tmp = now - last_profile_call;
|
|
printf("--> '%s' %lld.%03lld\n", text.c_str(), tmp / 1000LL, tmp % 1000LL);
|
|
last_profile_call = now;
|
|
}
|