Hello, Mike. Mike Wilson ha scritto: > Hello. First post to list. (noob warning). > > I am using uClibc-0.9.28.1, and would like to use the timer_create and > related functions, but I notice that in uClibc_dev/usr/include/time.h that > these function prototypes are surrounded by: > > #ifdef __UCLIBC_MJN3_ONLY__ > #warning "mjn3 FIXME: a bunch of unimplemented function prototypes." > # ifdef __USE_XOPEN2K > ... > #endif > #endif > > What does it mean? > Can I somehow use the functions?
I use posix timers since 0.9.28 uClibc release without problems, #defining _GNU_SOURCE as compiler option, which includes automativcally timers' headers (see features.h), and linking with librt.a (not sure if it's actually necessary). The order of magnitudo of my timers is tens of milliseconds. HTH, Carlo > Are they available on a newer version of uClibc? > Is there some work needing to be done to make them function? > > Is there another (uClibc preferred?) way to implement high resolution > timing? > > Thanks > > Mike > > _______________________________________________ > uClibc mailing list > [email protected] > http://lists.busybox.net/mailman/listinfo/uclibc > > > ------------------------------------------------------------------------ > > > No virus found in this incoming message. > Checked by AVG - http://www.avg.com > Version: 8.0.176 / Virus Database: 270.10.5/1881 - Release Date: 07/01/2009 > 17.59 > -- Carlo Zinato Viscount International S.p.A. R&D Labs, Ancona, Italy Tel. & fax 0039 071 2905127/2905142 [email protected] _______________________________________________ uClibc mailing list [email protected] http://lists.busybox.net/mailman/listinfo/uclibc
