summaryrefslogtreecommitdiffstats
path: root/src/include/kernel/futexmgr.H
blob: 8241751364301595cb0693216daaf99caf443eca (plain)
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
#ifndef FUTEXMGR
#define FUTEXMGR

/**
 * @file futexmgr.H
 * @brief Declaration for kernel side futex management
 */

#include <stdint.h>
#include <util/locked/list.H>
#include <kernel/spinlock.H>

struct task_t;


/**
 * @class FutexManager
 * Kernel internal management of fuxtexs
 */
class FutexManager
{
    public:

        /**
         * Put the current processes on a wait queue
         * @param[in] i_task  pointer to the current task structure
         * @param[in] i_addr  Futex address 
         * @param[in] i_val   Value that *i_addr should contain
         * @returns [0 | error code]  if *i_addr != i_val returns EWOULDBLOCK
         */
        static uint64_t wait(task_t * i_task, uint64_t * i_addr, uint64_t i_val);

        /**
         * Wakeup threads
         * @param[in] i_addr pointer to a futex
         * @param[in] i_count The max number of threads to wake
         * @returns The number of threads awoken
         */
        static uint64_t wake(uint64_t * i_addr, uint64_t i_count);

    protected:

        /**
         * Ctor
         */
        FutexManager() {};

        /**
         * Dtor
         */
        ~FutexManager() {};

    private: // functions

        /**
         * Put the current processes on a wait queue
         * @param[in] i_task  pointer to the current task structure
         * @param[in] i_addr  Futex address 
         * @param[in] i_val   Value that *i_addr should contain
         * @returns [0 | error code]  if *i_addr != i_val returns EWOULDBLOCK
         */
        uint64_t _wait(task_t * i_task, uint64_t * i_addr, uint64_t i_val);

        /**
         * Wakeup threads
         * @param[in] i_addr pointer to a futex
         * @param[in] i_count The max number of threads to wake
         * @returns The number of threads awoken
         */
        uint64_t _wake(uint64_t * i_addr, uint64_t i_count);

    private: // data

        struct _FutexWait_t
        {
            _FutexWait_t * next;    ///< next _FutexWait_t in list
            _FutexWait_t * prev;    ///< prev _FutexWait_t in list
            uint64_t * key;         ///< search key is futex address
            task_t* task;           ///< task on wait list
        };

        typedef Util::Locked::List<_FutexWait_t, uint64_t *> FutexList_t;

        Spinlock iv_lock;       ///< lock
        FutexList_t iv_list;    ///< List of waiting tasks for all futexes
};

#endif

OpenPOWER on IntegriCloud