Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

When compiling a program I wrote on Mac OS X after installing the necessary libraries through MacPorts, I get this error:

In function 'nanotime':
error: 'CLOCK_REALTIME' undeclared (first use in this function)
error: (Each undeclared identifier is reported only once
error: for each function it appears in.)

It appears that clock_gettime is not implemented in Mac OS X. Is there an alternative means of getting the epoch time in nanoseconds? Unfortunately gettimeofday is in microseconds.

share|improve this question
My documentation says "All implementations support the system-wide real-time clock, which is identified by CLOCK_REALTIME." Did you #include <time.h>? – pmg Mar 2 '11 at 12:18
Yes, I have included time.h. Also, man gettimeofday works on OSX, while man clock_gettime does not. – Delan Azabani Mar 2 '11 at 12:18
Also try cc -g `pkg-config --cflags libcurl glib-2.0 libpcre libconfuse` -D_POSIX_C_SOURCE=199309L -c getbooru-util.c – pmg Mar 2 '11 at 12:21
1  
On my system (Debian), to link I need the librt library. – pmg Mar 2 '11 at 12:23
1  
I know. It's in my linker command line. I don't get up to the linking stage at all. Mac OS X doesn't have clock_gettime, while Linux does. – Delan Azabani Mar 2 '11 at 12:26
show 1 more comment

7 Answers

up vote 5 down vote accepted

In effect, it seems not to be implemented for MacOs. You may want to look at this blog entry, but this doesn't seem to be available anymore. The main idea is in the following code snippet:

#include <mach/mach_time.h>
#define ORWL_NANO (+1.0E-9)
#define ORWL_GIGA UINT64_C(1000000000)

static double orwl_timebase = 0.0;
static uint64_t orwl_timestart = 0;

struct timespec orwl_gettime(void) {
  // be more careful in a multithreaded environement
  if (!orwl_timestart) {
    mach_timebase_info_data_t tb = { 0 };
    mach_timebase_info(&tb);
    orwl_timebase = tb.numer;
    orwl_timebase /= tb.denom;
    orwl_timestart = mach_absolute_time();
  }
  struct timespec t;
  double diff = (mach_absolute_time() - orwl_timestart) * orwl_timebase;
  t.tv_sec = diff * ORWL_NANO;
  t.tv_nsec = diff - (t.tv_sec * ORWL_GIGA);
  return t;
}
share|improve this answer
I don't want monotonic time though, I want the real time since the epoch, in nanoseconds. – Delan Azabani Mar 2 '11 at 12:35
Apparently MySQL (hmm Oracle) is trying to implement nanoseconds in Mac OS X ( @ bugs.mysql.com/bug.php?id=44000 ) – pmg Mar 2 '11 at 12:42
@Delan, I don't see why you would want that, this is useless precission for something counting in the order of magnitude of years. Ususally you need nanoseconds to time a function or so. Then it is sufficient to take the time before and after as it is done in that blog. But you could always simulate that by taking gettimeofday and mach_absolute_time at the beginning of your program and then add things up. – Jens Gustedt Mar 2 '11 at 12:58
2  
Never mix up monotonic and real time. Real time may jump as a NTP daemon corrects the system clock. They are two completely different things, really. – mic_e May 3 '12 at 18:08
"blog entry" is now broken :( – P Marecki Jul 12 '12 at 15:07
show 2 more comments

After hours of perusing different answers, blogs, and headers, I found a portable way to get the current time:

#include <time.h>
#include <sys/time.h>

#ifdef __MACH__
#include <mach/clock.h>
#include <mach/mach.h>
#endif



struct timespec ts;

#ifdef __MACH__ // OS X does not have clock_gettime, use clock_get_time
clock_serv_t cclock;
mach_timespec_t mts;
host_get_clock_service(mach_host_self(), CALENDAR_CLOCK, &cclock);
clock_get_time(cclock, &mts);
mach_port_deallocate(mach_task_self(), cclock);
ts.tv_sec = mts.tv_sec;
ts.tv_nsec = mts.tv_nsec;

#else
clock_gettime(CLOCK_REALTIME, &ts);
#endif

or check out this gist: https://gist.github.com/1087739

Hope this saves someone time. Cheers!

share|improve this answer
is host_get_clock_service expensive? would it pay to cache it for the process ? is it reusable ? thread safe ? Thanks - :) – peterk Oct 15 '11 at 1:56
also need includes: #ifdef __MACH__ #include <mach/clock.h> #include <mach/mach.h> #endif – Nikolay Vyahhi Jan 31 '12 at 22:24
2  
@NikolayVyahhi Yes! I have them in the gist. Though since you didn't find them, perhaps it's best to add them to the answer. – jbenet Feb 1 '12 at 19:09
Has anybody perhaps timed the above __MACH__ code? Using an independent microsecond-timer (well-tested) I get the impression, that two invocations of the above code cost ~25microseconds. – P Marecki Jul 12 '12 at 14:14

Everything you need is described in Technical Q&A QA1398: Technical Q&A QA1398: Mach Absolute Time Units, basically the function you want is mach_absolute_time.

Here's a slightly earlier version of the sample code from that page that does everything using Mach calls (the current version uses AbsoluteToNanoseconds from CoreServices). In current OS X (i.e., on Snow Leopard on x86_64) the absolute time values are actually in nanoseconds and so don't actually require any conversion at all. So, if you're good and writing portable code, you'll convert, but if you're just doing something quick and dirty for yourself, you needn't bother.

FWIW, mach_absolute_time is really fast.

uint64_t GetPIDTimeInNanoseconds(void)
{
    uint64_t        start;
    uint64_t        end;
    uint64_t        elapsed;
    uint64_t        elapsedNano;
    static mach_timebase_info_data_t    sTimebaseInfo;

    // Start the clock.

    start = mach_absolute_time();

    // Call getpid. This will produce inaccurate results because 
    // we're only making a single system call. For more accurate 
    // results you should call getpid multiple times and average 
    // the results.

    (void) getpid();

    // Stop the clock.

    end = mach_absolute_time();

    // Calculate the duration.

    elapsed = end - start;

    // Convert to nanoseconds.

    // If this is the first time we've run, get the timebase.
    // We can use denom == 0 to indicate that sTimebaseInfo is 
    // uninitialised because it makes no sense to have a zero 
    // denominator is a fraction.

    if ( sTimebaseInfo.denom == 0 ) {
        (void) mach_timebase_info(&sTimebaseInfo);
    }

    // Do the maths. We hope that the multiplication doesn't 
    // overflow; the price you pay for working in fixed point.

    elapsedNano = elapsed * sTimebaseInfo.numer / sTimebaseInfo.denom;

    printf("multiplier %u / %u\n", sTimebaseInfo.numer, sTimebaseInfo.denom);
    return elapsedNano;
}
share|improve this answer
#ifdef __MACH__
#include <sys/time.h>
//clock_gettime is not implemented on OSX
int clock_gettime(int /*clk_id*/, struct timespec* t) {
    struct timeval now;
    int rv = gettimeofday(&now, NULL);
    if (rv) return rv;
    t->tv_sec  = now.tv_sec;
    t->tv_nsec = now.tv_usec * 1000;
    return 0;
}
#endif
share|improve this answer
1  
If you use CLOCK_REALTIME or CLOCK_MONOTONIC, you should also define these: #define CLOCK_REALTIME 0 #define CLOCK_MONOTONIC 0 – nat chouf Mar 14 at 16:23

I tried the version with clock_get_time, and did cache the host_get_clock_service call. It's way slower than gettimeofday, it takes several microseconds per invocation. And, what's worse, the return value has steps of 1000, i.e. it's still microsecond granularity.

I'd advice to use gettimeofday, and multiply tv_usec by 1000.

share|improve this answer

Looks like your program is written using C.

If you want to know time and date use #include librery.

string nombre;
time_t fecha;
struct tm *temp;
struct tm fecha_tm;

/* obtener fecha (time_t) */
/* obtener fecha (time_t) */
if ((fecha = time(NULL)) == (time_t) -1)
    exit;

/* obtener fecha (struct tm) */
temp = localtime(&fecha);
memcpy(&fecha_tm, temp, sizeof fecha_tm);

nombre+=itos(fecha_tm.tm_mday);
nombre+=itos(fecha_tm.tm_mon+1);
nombre+=itos(fecha_tm.tm_year + 1900);
nombre+=".lg";

return  nombre;

}

// Saber la hora para escribir en cada mensaje string dar_hora() { string hora; time_t fecha; struct tm *temp; struct tm fecha_tm;

/* obtener fecha (time_t) */
/* obtener fecha (time_t) */
if ((fecha = time(NULL)) == (time_t) -1)
    exit;

/* obtener fecha (struct tm) */
temp = localtime(&fecha);
memcpy(&fecha_tm, temp, sizeof fecha_tm);

hora+=itos(fecha_tm.tm_hour);
hora+=":";
hora+=itos(fecha_tm.tm_min);
hora+=":";
hora+=itos(fecha_tm.tm_sec);
hora+=" --> ";

That's an example to use it.

share|improve this answer
1  
I have included time.h. Also, your solution provides second precision; I want nanosecond precision. – Delan Azabani Mar 2 '11 at 12:19
Look this link [link] (stackoverflow.com/questions/275004/…) – Jorge Vega Sánchez Mar 2 '11 at 12:28
2  
That answer suggests clock_gettime, which is not implemented on Mac OS X. – Delan Azabani Mar 2 '11 at 12:31
I have't found any solution for this problem. Sorry. – Jorge Vega Sánchez Mar 2 '11 at 13:34

Maristic has the best answer here to date. Let me simplify and add a remark. #include and Init():

#include <mach/mach_time.h>

double conversion_factor;

void Init() {
  mach_timebase_info_data_t timebase;
  mach_timebase_info(&timebase);
  conversion_factor = (double)timebase.numer / (double)timebase.denom;
}

Use as:

  uint64_t t1, t2;

  Init();

  t1 = mach_absolute_time();
  /* profiled code here */
  t2 = mach_absolute_time();

  double duration_ns = (double)(t2 - t1) * conversion_factor;  

Such timer has latency of 65ns +/- 2ns (2GHz CPU). Use this if you need "time evolution" of single execution. Otherwise loop your code 10000 times and profile even with gettimeofday(), which is portable (POSIX), and has the latency of 100ns +/- 0.5ns (though only 1us granularity).

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.