summaryrefslogtreecommitdiffstats
path: root/tools/database/database.c
diff options
context:
space:
mode:
authorSolomon Peachy <pizza@shaftnet.org>2023-05-25 16:03:33 -0400
committerSolomon Peachy <pizza@shaftnet.org>2023-05-25 16:05:59 -0400
commit8bc7ba5d221f8bb20ec94854609b9d32ecd8816e (patch)
tree01feefcf0e4c43b153349339b34e29a911178cda /tools/database/database.c
parente803daae0a1c42dbee0417d883a1944c65916cce (diff)
downloadrockbox-8bc7ba5d221f8bb20ec94854609b9d32ecd8816e.tar.gz
rockbox-8bc7ba5d221f8bb20ec94854609b9d32ecd8816e.zip
dbtool: More fixes to dbtool operation
Now properly treats current directory as "/" Change-Id: I54357a65f2fda7d2cfb56ff18a044ae10b87bbce
Diffstat (limited to 'tools/database/database.c')
-rw-r--r--tools/database/database.c35
1 files changed, 2 insertions, 33 deletions
diff --git a/tools/database/database.c b/tools/database/database.c
index 713d379c41..6eab245f65 100644
--- a/tools/database/database.c
+++ b/tools/database/database.c
@@ -23,41 +23,10 @@ int main(int argc, char **argv)
/* / is actually ., will get translated in io.c
* (with the help of sim_root_dir below */
- const char *paths[] = { "./", NULL };
+ const char *paths[] = { "/", NULL };
tagcache_init();
do_tagcache_build(paths);
tagcache_reverse_scan();
-
+
return 0;
}
-
-/* needed for io.c */
-const char *sim_root_dir = ".";
-
-/* stubs to avoid including thread-sdl.c */
-#include "kernel.h"
-void mutex_init(struct mutex *m)
-{
- (void)m;
-}
-
-void mutex_lock(struct mutex *m)
-{
- (void)m;
-}
-
-void mutex_unlock(struct mutex *m)
-{
- (void)m;
-}
-
-void sim_thread_lock(void *me)
-{
- (void)me;
-}
-
-void * sim_thread_unlock(void)
-{
- return (void*)1;
-}
-