Some file renaming (removed the haiku_ prefix).

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@29351 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Ingo Weinhold 2009-02-28 15:24:54 +00:00
parent b7d815f1cd
commit c12690b58a
12 changed files with 22 additions and 23 deletions

View File

@ -22,18 +22,17 @@ DEFINES += BUILDING_USERLAND_FS_SERVER=1 ;
# the library providing the Haiku kernel interface for add-ons
SharedLibrary libuserlandfs_haiku_kernel.so
:
haiku_kernel_emu.cpp
haiku_block_cache.cpp
haiku_condition_variable.cpp
haiku_hash.cpp
haiku_lock.cpp
haiku_slab.cpp
HaikuKernelFileSystem.cpp
HaikuKernelVolume.cpp
block_cache.cpp
condition_variable.cpp
file_cache.cpp
file_map.cpp
khash.cpp
lock.cpp
slab.cpp
haiku_kernel_emu.cpp
HaikuKernelFileSystem.cpp
HaikuKernelVolume.cpp
:
<nogrist>UserlandFSServer

View File

@ -3,7 +3,7 @@
* Distributed under the terms of the MIT License.
*/
#include "haiku_block_cache.h"
#include "block_cache.h"
#include <new>
@ -14,14 +14,14 @@
#include <Debug.h>
#include <KernelExport.h>
#include <fs_cache.h>
#include <kernel/util/DoublyLinkedList.h>
#include "haiku_condition_variable.h"
#include "haiku_fs_cache.h"
#include "haiku_hash.h"
#include "haiku_lock.h"
#include "haiku_slab.h"
#include "condition_variable.h"
#include "khash.h"
#include "lock.h"
#include "slab.h"
// TODO: this is a naive but growing implementation to test the API:

View File

@ -3,7 +3,7 @@
* Distributed under the terms of the MIT License.
*/
#include "haiku_condition_variable.h"
#include "condition_variable.h"
#include <new>
#include <stdlib.h>
@ -19,7 +19,7 @@
#include <syscalls.h>
#include <user_thread_defs.h>
#include "haiku_lock.h"
#include "lock.h"
#define STATUS_ADDED 1

View File

@ -14,7 +14,7 @@
#include <kernel/util/DoublyLinkedList.h>
#include "haiku_lock.h"
#include "lock.h"
#include "vfs.h"

View File

@ -4,7 +4,7 @@
** Distributed under the terms of the NewOS License.
*/
#include "haiku_hash.h"
#include "khash.h"
#include <stdlib.h>
#include <string.h>

View File

@ -8,7 +8,7 @@
/* Mutex and recursive_lock code */
#include "haiku_lock.h"
#include "lock.h"
#include <KernelExport.h>

View File

@ -1,9 +1,9 @@
/*
* Copyright 2001-2009, Ingo Weinhold, ingo_weinhold@gmx.de.
* Copyright 2009, Ingo Weinhold, ingo_weinhold@gmx.de.
* Distributed under the terms of the MIT License.
*/
#include "haiku_slab.h"
#include "slab.h"
#include <stdlib.h>