source: mainline/uspace/lib/c/include/fibril_synch.h@ 668f8cbf

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 668f8cbf was 668f8cbf, checked in by Jakub Jermar <jakub@…>, 15 years ago

Add structure for tracking ownership of fibril mutexes and rwlocks.

  • Property mode set to 100644
File size: 3.7 KB
Line 
1/*
2 * Copyright (c) 2009 Jakub Jermar
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 *
9 * - Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * - Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 * - The name of the author may not be used to endorse or promote products
15 * derived from this software without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28
29/** @addtogroup libc
30 * @{
31 */
32/** @file
33 */
34
35#ifndef LIBC_FIBRIL_SYNCH_H_
36#define LIBC_FIBRIL_SYNCH_H_
37
38#include <async.h>
39#include <fibril.h>
40#include <adt/list.h>
41#include <libarch/tls.h>
42#include <sys/time.h>
43
44typedef struct {
45 fibril_t *owned_by;
46} fibril_owner_info_t;
47
48typedef struct {
49 fibril_owner_info_t oi; /* Keep this the first thing. */
50 int counter;
51 link_t waiters;
52} fibril_mutex_t;
53
54#define FIBRIL_MUTEX_INITIALIZER(name) \
55 { \
56 .oi = { \
57 .owned_by = NULL \
58 }, \
59 .counter = 1, \
60 .waiters = { \
61 .prev = &name.waiters, \
62 .next = &name.waiters, \
63 } \
64 }
65
66#define FIBRIL_MUTEX_INITIALIZE(name) \
67 fibril_mutex_t name = FIBRIL_MUTEX_INITIALIZER(name)
68
69typedef struct {
70 fibril_owner_info_t oi; /* Keep this the first thing. */
71 unsigned writers;
72 unsigned readers;
73 link_t waiters;
74} fibril_rwlock_t;
75
76#define FIBRIL_RWLOCK_INITIALIZER(name) \
77 { \
78 .oi = { \
79 .owned_by = NULL \
80 }, \
81 .readers = 0, \
82 .writers = 0, \
83 .waiters = { \
84 .prev = &name.waiters, \
85 .next = &name.waiters, \
86 } \
87 }
88
89#define FIBRIL_RWLOCK_INITIALIZE(name) \
90 fibril_rwlock_t name = FIBRIL_RWLOCK_INITIALIZER(name)
91
92typedef struct {
93 link_t waiters;
94} fibril_condvar_t;
95
96#define FIBRIL_CONDVAR_INITIALIZER(name) \
97 { \
98 .waiters = { \
99 .next = &name.waiters, \
100 .prev = &name.waiters, \
101 } \
102 }
103
104#define FIBRIL_CONDVAR_INITIALIZE(name) \
105 fibril_condvar_t name = FIBRIL_CONDVAR_INITIALIZER(name)
106
107extern void fibril_mutex_initialize(fibril_mutex_t *);
108extern void fibril_mutex_lock(fibril_mutex_t *);
109extern bool fibril_mutex_trylock(fibril_mutex_t *);
110extern void fibril_mutex_unlock(fibril_mutex_t *);
111
112extern void fibril_rwlock_initialize(fibril_rwlock_t *);
113extern void fibril_rwlock_read_lock(fibril_rwlock_t *);
114extern void fibril_rwlock_write_lock(fibril_rwlock_t *);
115extern void fibril_rwlock_read_unlock(fibril_rwlock_t *);
116extern void fibril_rwlock_write_unlock(fibril_rwlock_t *);
117
118extern void fibril_condvar_initialize(fibril_condvar_t *);
119extern int fibril_condvar_wait_timeout(fibril_condvar_t *, fibril_mutex_t *,
120 suseconds_t);
121extern void fibril_condvar_wait(fibril_condvar_t *, fibril_mutex_t *);
122extern void fibril_condvar_signal(fibril_condvar_t *);
123extern void fibril_condvar_broadcast(fibril_condvar_t *);
124
125#endif
126
127/** @}
128 */
Note: See TracBrowser for help on using the repository browser.