[T106][ZXW-22]7520V3SCV2.01.01.02P42U09_VEC_V0.8_AP_VEC origin source commit

Change-Id: Ic6e05d89ecd62fc34f82b23dcf306c93764aec4b
diff --git a/ap/build/uClibc/librt/timer_getoverr.c b/ap/build/uClibc/librt/timer_getoverr.c
new file mode 100644
index 0000000..0e85516
--- /dev/null
+++ b/ap/build/uClibc/librt/timer_getoverr.c
@@ -0,0 +1,26 @@
+/*
+ * timer-getoverr.c - get the timer overrun count.
+ */
+
+#include <errno.h>
+#include <time.h>
+#include <sys/syscall.h>
+
+#include "kernel-posix-timers.h"
+
+#ifdef __NR_timer_getoverrun
+
+#define __NR___syscall_timer_getoverrun __NR_timer_getoverrun
+static __inline__ _syscall1(int, __syscall_timer_getoverrun, kernel_timer_t,
+			ktimerid);
+
+/* Get the timer overrun count */
+int timer_getoverrun(timer_t timerid)
+{
+	struct timer *kt = (struct timer *)timerid;
+
+	/* Get the information from the kernel */
+	return __syscall_timer_getoverrun(kt->ktimerid);
+}
+
+#endif