Added _kern_get_safemode_option(). Probably this file should be moved out
of the storage camp, though. git-svn-id: file:///srv/svn/repos/haiku/trunk/current@11043 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
@@ -94,6 +94,8 @@ extern "C" status_t _kstop_watching_vnode_(dev_t device, ino_t node,
|
||||
|
||||
extern "C" status_t _kstop_notifying_(port_id port, int32 handlerToken);
|
||||
|
||||
extern "C" status_t _kget_safemode_option_(const char *parameter, char *buffer, size_t *_bufferSize);
|
||||
|
||||
|
||||
status_t
|
||||
_kern_write_fs_info(dev_t device, const struct fs_info *info, int mask)
|
||||
@@ -702,3 +704,10 @@ _kern_rename_attr(int fromFile, const char *fromName, int toFile,
|
||||
return error;
|
||||
}
|
||||
|
||||
|
||||
extern "C" status_t
|
||||
_kern_get_safemode_option(const char *parameter, char *buffer, size_t *_bufferSize)
|
||||
{
|
||||
return _kget_safemode_option_(parameter, buffer, _bufferSize);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user