haiku/headers/private/kernel/disk_device_manager
Ingo Weinhold 758b1d0e05 Fixes that make Haiku build with gcc 4. Mainly out of the following
categories:
* Missing includes (like <stdlib.h> and <string.h>).
* Linking against $(TARGET_LIBSTDC++) instead of libstdc++.r4.so.
* Local variables shadowing parameters.
* Default parameters in function definitions (as opposed to function
  declarations).
* All C++ stuff (nothrow, map, set, vector, min, max,...) must be imported
  explicitly from the std:: namespace now.
* "new (sometype)[...]" must read "new sometype[...]", even if sometype is
  something like "const char *".
* __FUNCTION__ is no longer a string literal (but a string expression), i.e.
  'printf(__FUNCTION__ ": ...\n")' is invalid code.
* A type cast results in a non-lvalue. E.g. "(char *)buffer += bytes"
  is an invalid expression.
* "friend class SomeClass" only works when SomeClass is known before.
  Otherwise the an inner class with that name is considered as friend.
  gcc 4 is much pickier about scopes.
* gcc 4 is generally stricter with respect to type conversions in C.



git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@14878 a95241bf-73f2-0310-859d-f6bbb57e9c96
2005-11-12 23:27:14 +00:00
..
KDiskDevice.h Make the compiler happy. Shadowing super class methods with different signature is a very annoying C++ feature. 2005-01-26 14:57:35 +00:00
KDiskDeviceJob.h Added setter/getter for an error message. Should be set to something informative when while executing a job an error occurs. 2003-09-28 19:28:27 +00:00
KDiskDeviceJobFactory.h We always resize the partition contents. 2003-09-29 21:43:11 +00:00
KDiskDeviceJobQueue.h Added a KDiskDevice* parameter to the constructor. 2003-07-31 22:46:38 +00:00
KDiskDeviceManager.h Re-added support for file devices. 2004-10-28 22:18:20 +00:00
KDiskDeviceUtils.h Fixes that make Haiku build with gcc 4. Mainly out of the following 2005-11-12 23:27:14 +00:00
KDiskSystem.h * Added ShadowPartitionChanged() to KDiskSystem and respective hooks 2003-07-24 22:53:23 +00:00
KFileDiskDevice.h * Reworked publishing/unpublishing of the device. This is now basically 2004-10-28 22:22:04 +00:00
KFileSystem.h Merged the disk device manager module interface for file systems with the 2005-05-23 17:15:56 +00:00
KPartition.h KPartition::GetPath() now uses the new KPath class, which makes it more convenient to use. 2004-10-27 21:48:47 +00:00
KPartitionListener.h Added a KPartition listener mechanism and made use of it to keep shadow partitions with the corresponding physical ones in sync. 2003-09-28 22:04:13 +00:00
KPartitionVisitor.h Added KPartitionVisitor class used for advanced partition tree traversal. 2003-08-03 18:23:53 +00:00
KPartitioningSystem.h * Added ShadowPartitionChanged() to KDiskSystem and respective hooks 2003-07-24 22:53:23 +00:00
KPhysicalPartition.h
KShadowPartition.h Added a KPartition listener mechanism and made use of it to keep shadow partitions with the corresponding physical ones in sync. 2003-09-28 22:04:13 +00:00
RWLocker.h Moved to headers/private/kernel/disk_device_manager, since it is included by KDiskDevice.h. 2004-10-27 21:38:01 +00:00
ddm_modules.h Merged the disk device manager module interface for file systems with the 2005-05-23 17:15:56 +00:00
ddm_userland_interface.h Merged the disk device manager module interface for file systems with the 2005-05-23 17:15:56 +00:00