Added the missing clear_caches() function - thanks to Michael Lotz for his indirect report :)

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@11870 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler 2005-03-17 17:09:58 +00:00
parent a36a94da37
commit 3e06f513d4

View File

@ -1,7 +1,7 @@
/*
** Copyright 2003-2004, Axel Dörfler, axeld@pinc-software.de. All rights reserved.
** Distributed under the terms of the Haiku License.
*/
/*
* Copyright 2003-2005, Axel Dörfler, axeld@pinc-software.de. All rights reserved.
* Distributed under the terms of the MIT License.
*/
#include <libroot_private.h>
@ -75,6 +75,16 @@ _get_next_image_info(team_id team, int32 *cookie, image_info *info, size_t infoS
}
void
clear_caches(void *address, size_t length, uint32 flags)
{
_kern_clear_caches(address, length, flags);
}
// #pragma mark -
void
__init_image(const struct uspace_program_args *args)
{