mutex.h 6.93 KB
Newer Older
1
/*
2
 * Copyright (c) 2014-2015, Siemens AG. All rights reserved.
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 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions are met:
 *
 * 1. Redistributions of source code must retain the above copyright notice,
 * this list of conditions and the following disclaimer.
 *
 * 2. Redistributions in binary form must reproduce the above copyright notice,
 * this list of conditions and the following disclaimer in the documentation
 * and/or other materials provided with the distribution.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 * POSSIBILITY OF SUCH DAMAGE.
 */

#ifndef EMBB_BASE_C_MUTEX_H_
#define EMBB_BASE_C_MUTEX_H_

/**
 * \defgroup C_BASE_MUTEX Mutex
 *
 * Mutexes for thread synchronization
 *
 * Provides an abstraction from platform-specific mutex implementations.
 * Plain and recursive mutexes are available, where the plain version can
 * only be locked once by the same thread.
 *
 * \ingroup C_BASE
 * \{
 */

#ifdef __cplusplus
extern "C" {
#endif

#include <embb/base/c/internal/platform.h>
#include <embb/base/c/errors.h>
49
#include <embb/base/c/atomic.h>
50 51 52 53 54 55

#ifdef DOXYGEN
/**
 * Opaque type representing a mutex.
 */
typedef opaque_type embb_mutex_t;
56 57 58 59 60 61 62 63 64 65 66 67

/**
 * Opaque type representing a spinlock.
 */
typedef opaque_type embb_spinlock_t;
#else
/**
 * Spinlock type, treat as opaque.
 */
typedef struct {
  embb_atomic_int atomic_spin_variable_;
} embb_spinlock_t;
68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152
#endif /* DOXYGEN */

/**
 * Types of mutexes to be used in embb_mutex_init()
 */
enum {
  EMBB_MUTEX_PLAIN,
  /**< Mutex can be locked only once by the same thread. */
  EMBB_MUTEX_RECURSIVE
  /**< Mutex can be locked recursively by the same thread. */
};

/**
 * Initializes a mutex
 *
 * \post \c mutex is initialized
 * \return EMBB_SUCCESS if mutex could be initialized \n
 *         EMBB_ERROR otherwise
 * \memory (Potentially) allocates dynamic memory
 * \notthreadsafe
 * \see embb_mutex_destroy()
 */
int embb_mutex_init(
  embb_mutex_t* mutex,
  /**< [OUT] Pointer to mutex */
  int type
  /**< [IN] EMBB_MUTEX_PLAIN or EMBB_MUTEX_RECURSIVE. There is no guarantee
       that a mutex is non-recursive if the plain type is given. */
  );

/**
 * Waits until the mutex can be locked and locks it.
 *
 * \pre \c mutex is initialized \n
 *      If the mutex type is plain, \c mutex must not be locked by the current
 *      thread.
 * \post If successful, \c mutex is locked.
 * \return EMBB_SUCCESS if mutex could be locked \n
 *         EMBB_ERROR otherwise
 * \threadsafe
 * \see embb_mutex_try_lock(), embb_mutex_unlock()
 */
int embb_mutex_lock(
  embb_mutex_t* mutex
  /**< [IN/OUT] Pointer to mutex */
  );

/**
 * Tries to lock the mutex and returns immediately.
 *
 * \pre \c mutex is initialized
 * \post If successful, \c mutex is locked
 *
 * \return EMBB_SUCCESS if mutex could be locked \n
 *         EMBB_BUSY if mutex could not be locked \n
 *         EMBB_ERROR if an error occurred
 * \threadsafe
 * \see embb_mutex_lock(), embb_mutex_unlock()
 */
int embb_mutex_try_lock(
  embb_mutex_t* mutex
  /**< [IN/OUT] Pointer to mutex */
  );

/**
 * Unlocks a locked mutex.
 *
 * \pre \c mutex has been locked by the current thread.
 * \post If successful and when the given mutex type is plain, \c mutex is
 *       unlocked. If its type is recursive, \c mutex is only unlocked if the
 *       number of successful unlocks has reached the number of successful locks
 *       done by the current thread.
 * \return EMBB_SUCCESS if the operation was successful \n
 *         EMBB_ERROR otherwise
 * \threadsafe
 * \see embb_mutex_lock(), embb_mutex_try_lock()
 */
int embb_mutex_unlock(
  embb_mutex_t* mutex
  /**< [IN/OUT] Pointer to mutex */
  );

/**
 * Destroys a mutex and frees its resources.
 *
153
 * \pre \c mutex has been initialized and is not NULL.
154 155 156 157 158 159 160 161 162
 * \post \c mutex is uninitialized
 * \notthreadsafe
 * \see embb_mutex_init()
 */
void embb_mutex_destroy(
  embb_mutex_t* mutex
  /**< [IN/OUT] Pointer to mutex */
  );

163 164 165
/**
 * Initializes a spinlock
 *
Christian Kern committed
166
 * \pre \c spinlock is uninitialized
167 168 169 170 171 172 173 174 175 176 177 178 179 180 181
 * \post \c spinlock is initialized
 * \return EMBB_SUCCESS if spinlock could be initialized \n
 *         EMBB_ERROR otherwise
 * \memory (Potentially) allocates dynamic memory
 * \notthreadsafe
 * \see embb_spinlock_destroy()
 */
int embb_spin_init(
  embb_spinlock_t* spinlock
  /**< [OUT] Pointer to spinlock */
  );

/**
 * Spins until the spinlock can be locked and locks it.
 *
182 183 184
 * \note This method yields the current thread in regular,
 *       implementation-defined intervals.
 *
185 186
 * \pre \c spinlock is initialized \n
 * \post If successful, \c spinlock is locked.
187 188
 * \return EMBB_SUCCESS if spinlock could be locked. \n
 *         EMBB_ERROR if an error occurred.
189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204
 * \threadsafe
 * \see embb_spinlock_try_lock(), embb_mutex_unlock()
 */
int embb_spin_lock(
  embb_spinlock_t* spinlock
  /**< [IN/OUT] Pointer to spinlock */
  );

/**
 * Tries to lock the spinlock and returns if not successful.
 *
 * \pre \c spinlock is initialized
 * \post If successful, \c spinlock is locked
 *
 * \return EMBB_SUCCESS if spinlock could be locked \n
 *         EMBB_BUSY if spinlock could not be locked \n
205
 *         EMBB_ERROR if an error occurred
206 207 208 209 210 211 212
 * \threadsafe
 * \see embb_spin_lock(), embb_spin_unlock()
 */
int embb_spin_try_lock(
  embb_spinlock_t* spinlock,
  /**< [IN/OUT] Pointer to spinlock */
  unsigned int max_number_spins
Christian Kern committed
213 214 215
  /**< [IN] Maximal count of spins to perform, trying to acquire lock. Note that
   * passing 0 here results in not trying to obtain the lock at all.
   */
216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235
  );

/**
 * Unlocks a locked spinlock.
 *
 * \pre \c spinlock has been locked by the current thread.
 * \post If successful, \c spinlock is unlocked.
 * \return EMBB_SUCCESS if the operation was successful \n
 *         EMBB_ERROR otherwise
 * \threadsafe
 * \see embb_spin_lock(), embb_spin_try_lock()
 */
int embb_spin_unlock(
  embb_spinlock_t* spinlock
  /**< [IN/OUT] Pointer to spinlock */
  );

/**
 * Destroys a spinlock and frees its resources.
 *
236
 * \pre \c spinlock has been initialized and is not NULL.
237 238 239 240 241 242 243 244 245
 * \post \c spinlock is uninitialized
 * \notthreadsafe
 * \see embb_spin_init()
 */
void embb_spin_destroy(
  embb_spinlock_t* spinlock
  /**< [IN/OUT] Pointer to spinlock */
  );

246 247 248 249 250 251 252 253 254
#ifdef __cplusplus
} /* Close extern "C" { */
#endif

/**
 * \}
 */

#endif /* EMBB_BASE_C_MUTEX_H_ */