I'm trying to compile an ntp client for android using the android build system and running into a problem where adjtime() appears to be missing in bionic libc. How can I add support for adjtime() without modifying bionic?

I'm compiling openntpd for reference.

link|improve this question

80% accept rate
feedback

1 Answer

up vote 2 down vote accepted

Perhaps you could invoke the syscall raw?

/* if it's not already defined, be sure to check this:
   syscall numbering is different on every architecture */
#define SYS_adjtimex 124

int adjtimex(struct timex *txc) {
    return syscall1(SYS_adjtimex, (void *)txc);
}

See the adjtimex documentation if you need, as it's a Linux-specific syscall that works somewhat differently than the adjtime.

link|improve this answer
Thanks that did the trick! – ajpyles Mar 11 '11 at 19:52
feedback

Your Answer

 
or
required, but never shown

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