Renamed files (removed "beos_" prefix).

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@29355 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Ingo Weinhold 2009-02-28 16:16:36 +00:00
parent 4085ff6fcf
commit 25c4a958a2
10 changed files with 129 additions and 128 deletions

View File

@ -4,8 +4,8 @@
#include <new>
#include "beos_fs_interface.h"
#include "BeOSKernelVolume.h"
#include "fs_interface.h"
using std::nothrow;

View File

@ -7,11 +7,12 @@
#include <fcntl.h>
#include <unistd.h>
#include "beos_fs_interface.h"
#include "Debug.h"
#include "../kernel_emu.h"
#include "fs_interface.h"
using std::nothrow;

View File

@ -18,10 +18,10 @@ DEFINES += BUILDING_USERLAND_FS_SERVER=1 ;
# the library providing the BeOS kernel interface for add-ons
SharedLibrary libuserlandfs_beos_kernel.so
:
beos_kernel_emu.cpp
fs_cache.c
lock.cpp
beos_fs_cache.c
beos_lock.cpp
beos_kernel_emu.cpp
BeOSKernelFileSystem.cpp
BeOSKernelVolume.cpp

View File

@ -14,8 +14,8 @@
#include "../kernel_emu.h"
#include "beos_fs_cache.h"
#include "beos_lock.h"
#include "fs_cache.h"
#include "lock.h"
// #pragma mark - Paths

View File

@ -50,9 +50,9 @@
#include <OS.h>
#include <KernelExport.h>
#include "beos_fs_cache.h"
#include "beos_fs_cache_priv.h"
#include "beos_lock.h"
#include "fs_cache.h"
#include "fs_cache_priv.h"
#include "lock.h"

View File

@ -6,7 +6,7 @@
#ifndef USERLAND_FS_BEOS_FS_CACHE_PRIV_H
#define USERLAND_FS_BEOS_FS_CACHE_PRIV_H
#include "beos_lock.h"
#include "lock.h"
#ifndef _IMPEXP_KERNEL
#define _IMPEXP_KERNEL

View File

@ -1,5 +1,5 @@
#include "beos_lock.h"
#include "lock.h"
int
beos_new_lock(beos_lock *l, const char *name)