Date: Wed, 23 Oct 2013 14:28:42 +0000 (UTC) From: Brooks Davis <brooks@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r256972 - head/sys/sys Message-ID: <201310231428.r9NESgUq006885@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: brooks Date: Wed Oct 23 14:28:42 2013 New Revision: 256972 URL: http://svnweb.freebsd.org/changeset/base/256972 Log: Revert addition of sbintime and getsbintime that crept into r256963. Pointyhat: brooks Modified: head/sys/sys/time.h Modified: head/sys/sys/time.h ============================================================================== --- head/sys/sys/time.h Wed Oct 23 14:23:48 2013 (r256971) +++ head/sys/sys/time.h Wed Oct 23 14:28:42 2013 (r256972) @@ -422,15 +422,6 @@ void bintime(struct bintime *bt); void nanotime(struct timespec *tsp); void microtime(struct timeval *tvp); -static __inline sbintime_t -sbintime(void) -{ - struct bintime bt; - - bintime(&bt); - return (bttosbt(bt)); -} - void getbinuptime(struct bintime *bt); void getnanouptime(struct timespec *tsp); void getmicrouptime(struct timeval *tvp); @@ -448,15 +439,6 @@ void getbintime(struct bintime *bt); void getnanotime(struct timespec *tsp); void getmicrotime(struct timeval *tvp); -static __inline sbintime_t -getsbintime(void) -{ - struct bintime bt; - - getbintime(&bt); - return (bttosbt(bt)); -} - /* Other functions */ int itimerdecr(struct itimerval *itp, int usec); int itimerfix(struct timeval *tv);
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201310231428.r9NESgUq006885>