Opened on 01/11/10 at 11:54:28
Closed on 03/10/10 at 16:18:41
#1490 closed defect (fixed)
CLOCK_GET_TICKS_PER_SECOND wrong prototype
Reported by: | Marc Pignat | Owned by: | Joel Sherrill |
---|---|---|---|
Priority: | normal | Milestone: | 4.10 |
Component: | doc | Version: | 4.9 |
Severity: | trivial | Keywords: | |
Cc: | Blocked By: | ||
Blocking: |
Description
The prototype described in the documentation is wrong, it says:
rtems_interval rtems_clock_get_ticks_per_seconds(void);
and should read:
rtems_interval rtems_clock_get_ticks_per_second(void);
s/seconds/second
Best regards
Marc
diff --git a/doc/user/clock.t b/doc/user/clock.t
index 99f0ad2..480ef70 100644
--- a/doc/user/clock.t
+++ b/doc/user/clock.t
@@ -563,7 +563,7 @@ system date and time to application specific specifications.
@ifset is-C
@findex rtems_clock_get_ticks_per_second
@example
-rtems_interval rtems_clock_get_ticks_per_seconds(void);
+rtems_interval rtems_clock_get_ticks_per_second(void);
@end example
@end ifset
Change History (1)
comment:1 Changed on 03/10/10 at 16:18:41 by Joel Sherrill
Resolution: | → fixed |
---|---|
Status: | new → closed |
This was committed to the 4.9 branch and CVS head on Jan 11. Closing.
Thank you for the report.