[PATCH] kern_tc.c: Provide a weak hardpps() implementation
Sebastian Huber
sebastian.huber at embedded-brains.de
Tue Jun 21 10:28:04 UTC 2022
The real implementation of hardpps() is defined in kern_ntptime.c. Use it only
if the NTP support is needed by the application.
Update #2349.
---
cpukit/score/src/kern_tc.c | 12 ++++++++++++
1 file changed, 12 insertions(+)
diff --git a/cpukit/score/src/kern_tc.c b/cpukit/score/src/kern_tc.c
index 78d7fa1e3f..449c830905 100644
--- a/cpukit/score/src/kern_tc.c
+++ b/cpukit/score/src/kern_tc.c
@@ -2079,6 +2079,18 @@ pps_ioctl(u_long cmd, caddr_t data, struct pps_state *pps)
}
#ifdef __rtems__
+/*
+ * The real implementation of hardpps() is defined in kern_ntptime.c. Use it
+ * only if the NTP support is needed by the application.
+ */
+RTEMS_WEAK void
+hardpps(struct timespec *tsp, long nsec);
+{
+
+ (void)tps;
+ (void)nsec;
+}
+
static int
default_wait(struct pps_state *pps, struct timespec timeout)
{
--
2.35.3
More information about the devel
mailing list