summaryrefslogtreecommitdiffstats
path: root/nuttx/sched/clock_internal.h
diff options
context:
space:
mode:
authorpatacongo <patacongo@7fd9a85b-ad96-42d3-883c-3090e2eb8679>2012-07-14 19:30:31 +0000
committerpatacongo <patacongo@7fd9a85b-ad96-42d3-883c-3090e2eb8679>2012-07-14 19:30:31 +0000
commit907c8fcd4a656a089bd7934756beca9a4256f146 (patch)
treeb34f7d2914cba8aeb9311c5bae3771af40054640 /nuttx/sched/clock_internal.h
parent1eb675344c593d23f1c2ac1b5e56dcabd68e08f2 (diff)
Fix STM32 F2/F4 SDIO clocking; Clean-up files in sched/ directory
git-svn-id: https://nuttx.svn.sourceforge.net/svnroot/nuttx/trunk@4940 7fd9a85b-ad96-42d3-883c-3090e2eb8679
Diffstat (limited to 'nuttx/sched/clock_internal.h')
-rw-r--r--nuttx/sched/clock_internal.h24
1 files changed, 12 insertions, 12 deletions
diff --git a/nuttx/sched/clock_internal.h b/nuttx/sched/clock_internal.h
index dadf5d66a4..aba9723b63 100644
--- a/nuttx/sched/clock_internal.h
+++ b/nuttx/sched/clock_internal.h
@@ -1,8 +1,8 @@
/********************************************************************************
- * clock_internal.h
+ * sched/clock_internal.h
*
* Copyright (C) 2007-2009 Gregory Nutt. All rights reserved.
- * Author: Gregory Nutt <spudmonkey@racsa.co.cr>
+ * Author: Gregory Nutt <gnutt@nuttx.org>
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
@@ -33,8 +33,8 @@
*
********************************************************************************/
-#ifndef __CLOCK_INTERNAL_H
-#define __CLOCK_INTERNAL_H
+#ifndef __SCHED_CLOCK_INTERNAL_H
+#define __SCHED_CLOCK_INTERNAL_H
/********************************************************************************
* Included Files
@@ -79,13 +79,13 @@ extern struct timespec g_basetime;
* Public Function Prototypes
********************************************************************************/
-extern void weak_function clock_initialize(void);
-extern void weak_function clock_timer(void);
+void weak_function clock_initialize(void);
+void weak_function clock_timer(void);
-extern int clock_abstime2ticks(clockid_t clockid,
- FAR const struct timespec *abstime,
- FAR int *ticks);
-extern int clock_time2ticks(FAR const struct timespec *reltime, FAR int *ticks);
-extern int clock_ticks2time(int ticks, FAR struct timespec *reltime);
+int clock_abstime2ticks(clockid_t clockid,
+ FAR const struct timespec *abstime,
+ FAR int *ticks);
+int clock_time2ticks(FAR const struct timespec *reltime, FAR int *ticks);
+int clock_ticks2time(int ticks, FAR struct timespec *reltime);
-#endif /* __CLOCK_INTERNAL_H */
+#endif /* __SCHED_CLOCK_INTERNAL_H */