Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 2434 → Rev 2435

/branches/fs/uspace/share/message.c
1,13 → 1,41
/* Sending extended well formed messages to FS over
* standard HelenOS message agrs and over shared buffer.
/*
* Copyright (c) 2007 Konopa-Jelen-Majer
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* - Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* - Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* - The name of the author may not be used to endorse or promote products
* derived from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
 
/* Methods:
* send_request: forms and sends extended message to FS
* unpack_message: unpacks message to given message_params_t* structure
/** @addtogroup FileSystemTask
* @{
*/
 
/**
* @file message.c
* @brief Sending extended well formed messages to FS over
* standard HelenOS message agrs and over shared buffer.
*/
 
 
#include <async.h>
#include <task.h>
#include "../fs/fs.h"
16,7 → 44,10
int send_request(int phoneid, ipcarg_t method, message_params_t *params, void *shared_buffer);
void unpack_message(message_params_t *message, ipc_call_t m_input, void *shared_buffer);
 
/* This method should be used by all callers of FS. Candidate at library function. */
/**
* Forms and sends extended message to FS
* This method should be used by all callers of FS. Candidate at library function.
*/
int send_request(int phoneid, ipcarg_t method, message_params_t *params, void *shared_buffer)
{
42,7 → 73,10
return retval;
}
 
/* Will be used by FS to unpacking incoming extended message. */
/**
* Unpacks message to given message_params_t* structure
* Will be used by FS to unpacking incoming extended message.
*/
void unpack_message(message_params_t *message, ipc_call_t m_input, void *shared_buffer)
{
63,3 → 97,8
memcpy((void *)(&message->entry_number), (void *)(shared_buffer + shift), sizeof(int));
 
}
 
/**
*}
*/