source: trunk/kernel/libk/barrier.h @ 467

Last change on this file since 467 was 457, checked in by alain, 6 years ago

This version modifies the exec syscall and fixes a large number of small bugs.
The version number has been updated (0.1)

File size: 2.3 KB
Line 
1/*
2 * _barrier.h - local kernel barrier definition
3 *
4 * Author  Alain Greiner (2016)
5 *
6 * Copyright (c) UPMC Sorbonne Universites
7 *
8 * This file is part of ALMOS-MKH.
9 *
10 * ALMOS-MKH is free software; you can redistribute it and/or modify it
11 * under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; version 2.0 of the License.
13 *
14 * ALMOS-MKH is distributed in the hope that it will be useful, but
15 * WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17 * General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with ALMOS-MKH; if not, write to the Free Software Foundation,
21 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
22 */
23
24#ifndef _BARRIER_H_
25#define _BARRIER_H_
26
27#include <kernel_config.h>
28#include <hal_kernel_types.h>
29
30/*****************************************************************************************
31 * This structure defines a "rendez-vous" barrier, that can be used
32 * to synchronise several kernel threads running in the same  cluster.
33 * It is used in the kernel_init phase.
34 * It does not need to be initialised, but it must be statically allocated
35 * in the KDATA segment to be properly initialised by the compiler/loader.
36 ****************************************************************************************/
37
38typedef struct barrier_s
39{
40    uint32_t            current;            // number of arrived threads
41    volatile uint32_t   sense;              // barrier state (toggle)
42    uint32_t            pad[(CONFIG_CACHE_LINE_SIZE>>2)-2];
43} 
44barrier_t;
45
46/*****************************************************************************************
47 * This blocking function implements a toggle barrier. It returns only when all
48 * expected threads reach the barrier. It can be used several times without
49 * specific initialisation.
50 * It is portable, as it uses the remote_lw() & remote_sw() access functions.
51 * @ barrier : pointer on barrier
52 * @ count   : number of expected thread
53 ****************************************************************************************/
54inline void barrier_wait( barrier_t * barrier, 
55                          uint32_t    count );
56
57
58#endif  /* _BARRIER_H_ */
Note: See TracBrowser for help on using the repository browser.