ccRTP 2.1.2
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Macros | Functions
InitializeGcrypt.cpp File Reference
#include <stdio.h>
#include <stdlib.h>
#include <pthread.h>
#include <errno.h>
#include <gcrypt.h>
Include dependency graph for InitializeGcrypt.cpp:

Go to the source code of this file.

Macros

#define GCRY_THREAD_OPTION_PTHREAD_CPP_IMPL
 

Functions

int initializeGcrypt ()
 

Macro Definition Documentation

#define GCRY_THREAD_OPTION_PTHREAD_CPP_IMPL
Value:
static int gcry_pthread_mutex_init (void **priv) \
{ \
int err = 0; \
pthread_mutex_t *lock = (pthread_mutex_t *)malloc (sizeof (pthread_mutex_t)); \
\
if (!lock) \
err = ENOMEM; \
if (!err) \
{ \
err = pthread_mutex_init (lock, NULL); \
if (err) \
free (lock); \
else \
*priv = lock; \
} \
return err; \
} \
static int gcry_pthread_mutex_destroy (void **lock) \
{ int err = pthread_mutex_destroy ((pthread_mutex_t *)*lock); free (*lock); return err; } \
static int gcry_pthread_mutex_lock (void **lock) \
{ return pthread_mutex_lock ((pthread_mutex_t *)*lock); } \
static int gcry_pthread_mutex_unlock (void **lock) \
{ return pthread_mutex_unlock ((pthread_mutex_t *)*lock); } \
\
static struct gcry_thread_cbs gcry_threads_pthread = \
{ GCRY_THREAD_OPTION_PTHREAD, NULL, \
gcry_pthread_mutex_init, gcry_pthread_mutex_destroy, \
gcry_pthread_mutex_lock, gcry_pthread_mutex_unlock }

Definition at line 29 of file InitializeGcrypt.cpp.

Function Documentation

int initializeGcrypt ( )