#include "Utilities/RFIOAdaptor/interface/RFIOFile.h"
#include "Utilities/RFIOAdaptor/interface/RFIO.h"
#include "FWCore/Utilities/interface/Exception.h"
#include "FWCore/MessageLogger/interface/MessageLogger.h"
#include <cerrno>
#include <unistd.h>
#include <stdint.h>
#include <time.h>
Go to the source code of this file.
Defines | |
#define | __STDC_LIMIT_MACROS 1 |
Functions | |
static double | realNanoSecs (void) |
#define __STDC_LIMIT_MACROS 1 |
Definition at line 1 of file RFIOFile.cc.
static double realNanoSecs | ( | void | ) | [static] |
Definition at line 11 of file RFIOFile.cc.
Referenced by RFIOFile::read().
00012 { 00013 struct timespec ts; 00014 if (clock_gettime (CLOCK_REALTIME, &ts) == 0) 00015 return ts.tv_sec * 1e9 + ts.tv_nsec; 00016 return 0; 00017 }