Deleted Added
sdiff udiff text old ( 278277 ) new ( 290245 )
full compact
1/**
2 * Copyright (c) 2010-2012 Broadcom. All rights reserved.
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
6 * are met:
7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions, and the following disclaimer,

--- 206 unchanged lines hidden (view full) ---

215extern int32_t vchi_service_close( const VCHI_SERVICE_HANDLE_T handle );
216
217// Routine to increment ref count on a named service
218extern int32_t vchi_service_use( const VCHI_SERVICE_HANDLE_T handle );
219
220// Routine to decrement ref count on a named service
221extern int32_t vchi_service_release( const VCHI_SERVICE_HANDLE_T handle );
222
223// Routine to send a message accross a service
224extern int32_t vchi_msg_queue( VCHI_SERVICE_HANDLE_T handle,
225 const void *data,
226 uint32_t data_size,
227 VCHI_FLAGS_T flags,
228 void *msg_handle );
229
230// scatter-gather (vector) and send message
231int32_t vchi_msg_queuev_ex( VCHI_SERVICE_HANDLE_T handle,

--- 142 unchanged lines hidden ---