vectored_interrupt_source vmp
API Reference Manual  /  4 Model-to-Model Interfaces  / 

virtiofs_fuse

Description
This interface is intended for implementing a FUSE request handler.

handle_request This method takes a FUSE request in req . It then returns a buffer_t object with the FUSE response. The caller of handle_request must free the data field in the returned buffer_t object.

SIM_INTERFACE(virtiofs_fuse)
{
        buffer_t (*handle_request)(conf_object_t * obj, bytes_t req);
};

#define VIRTIOFS_FUSE_INTERFACE "virtiofs_fuse"

Execution Context
Cell Context for all methods.

vectored_interrupt_source vmp