next up previous contents index
Next: 18.4.2 oskit_wrap_stream: Wrap an Up: 18.4 Thread-safe Adaptors Previous: 18.4 Thread-safe Adaptors

18.4.1 oskit_wrap_socket: Wrap an oskit_socket in a thread-safe adaptor

 

SYNOPSIS

#include <oskit/com/wrapper.h>

oskit_error_t oskit_wrap_socket(struct oskit_socket *in, void (*lock)(void *), void (*unlock)(void *), void *cookie, struct oskit_socket **out);

DESCRIPTION

Create and return an oskit_socket thread-safe adaptor.

PARAMETERS

in
The oskit_socket COM interface to be wrapped.
lock
The process lock routine.
unlock
The process unlock routine.
cookie
A cookie to be passed to the lock and unlock routines.
out
The oskit_socket adaptor COM interface.

RETURNS

Returns 0 on success, or an error code specified in <oskit/error.h>, on error.



University of Utah Flux Research Group