1 /* 2 * Copyright 2007, Ingo Weinhold, bonefish@cs.tu-berlin.de. 3 * Distributed under the terms of the MIT License. 4 */ 5 #ifndef _SYSTEM_DEPENDENCIES_H 6 #define _SYSTEM_DEPENDENCIES_H 7 8 9 #ifdef BFS_SHELL 10 11 #include <new> 12 13 #include "fssh_api_wrapper.h" 14 #include "fssh_auto_deleter.h" 15 16 #else // !BFS_SHELL 17 18 #include <AutoDeleter.h> 19 #include <util/AutoLock.h> 20 #include <util/DoublyLinkedList.h> 21 #include <util/kernel_cpp.h> 22 #include <util/SinglyLinkedList.h> 23 #include <util/Stack.h> 24 25 #include <ByteOrder.h> 26 27 #ifndef _BOOT_MODE 28 # include <tracing.h> 29 30 # include <driver_settings.h> 31 # include <fs_attr.h> 32 # include <fs_cache.h> 33 # include <fs_index.h> 34 # include <fs_info.h> 35 # include <fs_interface.h> 36 # include <fs_query.h> 37 # include <fs_volume.h> 38 # include <Drivers.h> 39 # include <KernelExport.h> 40 # include <NodeMonitor.h> 41 # include <SupportDefs.h> 42 # include <TypeConstants.h> 43 #endif // _BOOT_MODE 44 45 #include <ctype.h> 46 #include <errno.h> 47 #include <new> 48 #include <null.h> 49 #include <string.h> 50 #include <stdio.h> 51 #include <stdlib.h> 52 #include <time.h> 53 #include <unistd.h> 54 55 #endif // !BFS_SHELL 56 57 58 #endif // _SYSTEM_DEPENDENCIES_H 59