blob: 4a8288e4f1ff75e0ecb3a678a024875cdcec818b [file] [log] [blame]
Paul Bakker2466d932013-09-28 14:40:38 +02001/**
2 * \file threading.h
3 *
4 * \brief Threading abstraction layer
5 *
Manuel Pégourié-Gonnarda658a402015-01-23 09:45:19 +00006 * Copyright (C) 2006-2013, ARM Limited, All Rights Reserved
Paul Bakker2466d932013-09-28 14:40:38 +02007 *
Manuel Pégourié-Gonnard860b5162015-01-28 17:12:07 +00008 * This file is part of mbed TLS (https://polarssl.org)
Paul Bakker2466d932013-09-28 14:40:38 +02009 *
Paul Bakker2466d932013-09-28 14:40:38 +020010 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License along
21 * with this program; if not, write to the Free Software Foundation, Inc.,
22 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
23 */
24#ifndef POLARSSL_THREADING_H
25#define POLARSSL_THREADING_H
26
Manuel Pégourié-Gonnardcef4ad22014-04-29 12:39:06 +020027#if !defined(POLARSSL_CONFIG_FILE)
Paul Bakker2466d932013-09-28 14:40:38 +020028#include "config.h"
Manuel Pégourié-Gonnardcef4ad22014-04-29 12:39:06 +020029#else
30#include POLARSSL_CONFIG_FILE
31#endif
Paul Bakker2466d932013-09-28 14:40:38 +020032
33#include <stdlib.h>
34
35#ifdef __cplusplus
36extern "C" {
37#endif
38
39#define POLARSSL_ERR_THREADING_FEATURE_UNAVAILABLE -0x001A /**< The selected feature is not available. */
40#define POLARSSL_ERR_THREADING_BAD_INPUT_DATA -0x001C /**< Bad input parameters to function. */
41#define POLARSSL_ERR_THREADING_MUTEX_ERROR -0x001E /**< Locking / unlocking / free failed with error code. */
42
Paul Bakker2466d932013-09-28 14:40:38 +020043#if defined(POLARSSL_THREADING_PTHREAD)
44#include <pthread.h>
45typedef pthread_mutex_t threading_mutex_t;
46#endif
47
48#if defined(POLARSSL_THREADING_ALT)
49/* You should define the threading_mutex_t type in your header */
50#include "threading_alt.h"
51
52/**
53 * \brief Set your alternate threading implementation function
54 * pointers
55 *
Paul Bakker6838bd12013-09-30 13:56:38 +020056 * \param mutex_init the init function implementation
Paul Bakker2466d932013-09-28 14:40:38 +020057 * \param mutex_free the free function implementation
58 * \param mutex_lock the lock function implementation
59 * \param mutex_unlock the unlock function implementation
60 *
61 * \return 0 if successful
62 */
63int threading_set_alt( int (*mutex_init)( threading_mutex_t * ),
64 int (*mutex_free)( threading_mutex_t * ),
65 int (*mutex_lock)( threading_mutex_t * ),
66 int (*mutex_unlock)( threading_mutex_t * ) );
67#endif /* POLARSSL_THREADING_ALT_C */
68
69/*
70 * The function pointers for mutex_init, mutex_free, mutex_ and mutex_unlock
Paul Bakker6838bd12013-09-30 13:56:38 +020071 *
72 * All these functions are expected to work or the result will be undefined.
Paul Bakker2466d932013-09-28 14:40:38 +020073 */
74extern int (*polarssl_mutex_init)( threading_mutex_t *mutex );
75extern int (*polarssl_mutex_free)( threading_mutex_t *mutex );
76extern int (*polarssl_mutex_lock)( threading_mutex_t *mutex );
77extern int (*polarssl_mutex_unlock)( threading_mutex_t *mutex );
78
79#ifdef __cplusplus
80}
81#endif
82
83#endif /* threading.h */