blob: 16304602b615417b44e22fdcdcd22df85a6dff27 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
@deftypefun {void} {gnutls_global_set_mutex} (mutex_init_func @var{init}, mutex_deinit_func @var{deinit}, mutex_lock_func @var{lock}, mutex_unlock_func @var{unlock})
@var{init}: mutex initialization function
@var{deinit}: mutex deinitialization function
@var{lock}: mutex locking function
@var{unlock}: mutex unlocking function
With this function you are allowed to override the default mutex
locks used in some parts of gnutls and dependent libraries. This function
should be used if you have complete control of your program and libraries.
Do not call this function from a library, or preferably from any application
unless really needed to. GnuTLS will use the appropriate locks for the running
system.
This function must be called prior to any other GnuTLS function; otherwise
the behavior is undefined.
@strong{Deprecated:} This function is discouraged on GnuTLS 3.7.3 or later.
@strong{Since:} 2.12.0
@end deftypefun
|