[rtems commit] kern_ntptime.c: Add lmax() qmin() definitions

Sebastian Huber sebh at rtems.org
Mon May 23 07:04:26 UTC 2022


Module:    rtems
Branch:    master
Commit:    a3930e8c49b29fa4a98c4eeeddbdb7b18d371292
Changeset: http://git.rtems.org/rtems/commit/?id=a3930e8c49b29fa4a98c4eeeddbdb7b18d371292

Author:    Gabriel Moyano <gabriel.moyano at dlr.de>
Date:      Fri May 20 11:29:54 2022 +0200

kern_ntptime.c: Add lmax() qmin() definitions

Update #2349.

---

 cpukit/score/src/kern_ntptime.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/cpukit/score/src/kern_ntptime.c b/cpukit/score/src/kern_ntptime.c
index 610386833c..da6b425064 100644
--- a/cpukit/score/src/kern_ntptime.c
+++ b/cpukit/score/src/kern_ntptime.c
@@ -71,6 +71,8 @@ __FBSDID("$FreeBSD$");
 #define	ntp_update_second _Timecounter_NTP_update_second
 #define	time_uptime _Timecounter_Time_uptime
 struct thread;
+static __inline long lmax(long a, long b) { return (a > b ? a : b); }
+static __inline quad_t qmin(quad_t a, quad_t b) { return (a < b ? a : b); }
 #endif /* __rtems__ */
 
 #ifndef __rtems__



More information about the vc mailing list