summaryrefslogtreecommitdiff
path: root/firmware/export/kernel.h
diff options
context:
space:
mode:
authorThomas Martitz <kugel@rockbox.org>2010-09-01 21:29:34 +0000
committerThomas Martitz <kugel@rockbox.org>2010-09-01 21:29:34 +0000
commit6eaab4d00446c070c655f0e6c9a872532a776b6f (patch)
tree69610996dd0a6092459b14e164d4e48e03b1e5bb /firmware/export/kernel.h
parent8e0a0babc57db3e9edc06f3e269fb47c27292ed5 (diff)
downloadrockbox-6eaab4d00446c070c655f0e6c9a872532a776b6f.tar.gz
rockbox-6eaab4d00446c070c655f0e6c9a872532a776b6f.zip
Ged rid of uisimulator/common/io.c for android builds.
Use host's functions for file i/o directly (open(), close() ,etc.), not the sim_* variants. Some dir functions need to be wrapped still because we need to cache the parents dir's path (host's dirent doesn't let us know). For the same reason (incompatibility) with host's dirent) detach some members from Rockbox' dirent struct and put it into an extra one, the values can be retrieved via the new dir_get_info(). Get rid of the sim_ prefix for sleep as well and change the signature to unix sleep(). git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27968 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/export/kernel.h')
-rw-r--r--firmware/export/kernel.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/firmware/export/kernel.h b/firmware/export/kernel.h
index d256f31ab5..405f6b6838 100644
--- a/firmware/export/kernel.h
+++ b/firmware/export/kernel.h
@@ -203,14 +203,10 @@ static inline void call_tick_tasks(void)
203} 203}
204#endif 204#endif
205 205
206#if (CONFIG_PLATFORM & PLATFORM_HOSTED) && !defined(PLUGIN) && !defined(CODEC)
207#define sleep(x) sim_sleep(x)
208#endif
209
210/* kernel functions */ 206/* kernel functions */
211extern void kernel_init(void) INIT_ATTR; 207extern void kernel_init(void) INIT_ATTR;
212extern void yield(void); 208extern void yield(void);
213extern void sleep(int ticks); 209extern unsigned sleep(unsigned ticks);
214int tick_add_task(void (*f)(void)); 210int tick_add_task(void (*f)(void));
215int tick_remove_task(void (*f)(void)); 211int tick_remove_task(void (*f)(void));
216extern void tick_start(unsigned int interval_in_ms) INIT_ATTR; 212extern void tick_start(unsigned int interval_in_ms) INIT_ATTR;