/usr/include/DIET_mutex.h is in libdiet-dagda2.8-dev 2.8.0-1build2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 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 | /**
* @file DIET_mutex.h
*
* @brief DIET mutex interface for multi-threaded server applications
*
* @author Philippe COMBES (Philippe.Combes@ens-lyon.fr)
* Bert VAN HEUKELOM (Bert.Van-Heukelom@ens-lyon.fr)
*
* @section Licence
* |LICENCE|
*/
#ifndef _DIET_MUTEX_H_
#define _DIET_MUTEX_H_
#ifdef __cplusplus
extern "C" {
#endif // __cplusplus
typedef int diet_mutex_t;
/**
* @brief initialize DIET mutexes
*
*/
void
diet_mutex_initialize();
/**
* @brief create mutex
*
* @param ret
*/
void
diet_mutex_create(int* ret);
/**
* @brief lock mutex
*
* @param i index of the mutex to be locked
*/
void
diet_mutex_lock(int i);
/**
* @brief unlock mutex
*
* @param i index of the mutex to be unlocked
*/
void
diet_mutex_unlock(int i);
/**
* @brief free mutex
*
* @param i
*/
void
diet_mutex_free(int* i);
/**
* @brief finalize DIET mutexes
*
*/
void
diet_mutex_finalize();
/**
* @brief put current thread to sleep
*
* @param m seconds
* @param n nanoseconds
*/
void
diet_thread_sleep(int m, int n);
/**
* @brief yield current thread
*
*/
void
diet_thread_yield();
/**
* @brief get current thread id
*
* @return thread id
*/
int
diet_thread_id();
#ifdef __cplusplus
}
#endif // __cplusplus
#endif // _DIET_MUTEX_H_
|