Renamed the readv/writev hook functions to read_pages/write_pages to

make clear that they work differently from before (or soon will).


git-svn-id: file:///srv/svn/repos/haiku/trunk/current@8841 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler
2004-09-04 17:12:27 +00:00
parent d25d8e6b16
commit 9edfb372ab
2 changed files with 16 additions and 16 deletions
+2 -2
View File
@@ -40,8 +40,8 @@ typedef struct pnp_devfs_driver_info {
device_write_hook write; // writes to the device
device_select_hook select; // start select (can be NULL)
device_deselect_hook deselect; // stop select (can be NULL)
device_readv_hook readv; // scatter-gather read from the device (can be NULL)
device_writev_hook writev; // scatter-gather write to the device (can be NULL)
device_read_pages_hook read_pages; // scatter-gather read from the device (can be NULL)
device_write_pages_hook write_pages; // scatter-gather write to the device (can be NULL)
} pnp_devfs_driver_info;