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); _______________________________________________ svn-src-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-src-all To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"