xref: /haiku/src/tests/add-ons/kernel/file_systems/bfs/btree/stubs.cpp (revision e661df29804f2703a65e23f5789c3c87c0915298)
1 /*
2  * Copyright 2014-2015, Haiku, Inc. All rights reserved.
3  * Distributed under the terms of the MIT License.
4  */
5 
6 
7 #include <fs_interface.h>
8 #include <kscheduler.h>
9 
10 
11 status_t
12 acquire_vnode(fs_volume* volume, ino_t vnodeID)
13 {
14 	return B_OK;
15 }
16 
17 
18 status_t
19 put_vnode(fs_volume* volume, ino_t vnodeID)
20 {
21 	return B_OK;
22 }
23 
24 
25 // #pragma mark -
26 
27 
28 void
29 scheduler_enqueue_in_run_queue(Thread* thread)
30 {
31 }
32 
33 
34 void
35 scheduler_reschedule(int32 next_state)
36 {
37 }
38