00001 /**************************************************************** 00002 * (c) 2005 - 2007 Technische Universitaet Dresden * 00003 * This file is part of DROPS, which is distributed under the * 00004 * terms of the GNU General Public License 2. Please see the * 00005 * COPYING file for details. * 00006 ****************************************************************/ 00007 00008 #include "local.h" 00009 #include <stdlib.h> 00010 00011 int ore_send_string(l4ore_handle_t channel, int handle, 00012 char *data, unsigned int size) 00013 { 00014 DICE_DECLARE_ENV(_dice_corba_env); 00015 _dice_corba_env.malloc = (dice_malloc_func)malloc; 00016 _dice_corba_env.free = (dice_free_func)free; 00017 00018 return ore_rxtx_send_call(&channel, data, size, &_dice_corba_env); 00019 }