Welcome to mirror list, hosted at ThFree Co, Russian Federation.

UnixHandle.h « unix « Runtime « Native « src - github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 57a2258a85d316e1d526b9bbecdc9804b0222906 (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
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.

#ifndef __UNIX_HANDLE_H__
#define __UNIX_HANDLE_H__

enum class UnixHandleType
{
    Thread,
    Event
};

// TODO: add validity check for usage / closing?
class UnixHandleBase
{
    UnixHandleType m_type;
protected:
    UnixHandleBase(UnixHandleType type)
    : m_type(type)
    {
    }

public:

    virtual ~UnixHandleBase()
    {
    }

    virtual bool Destroy()
    {
        return true;
    }

    UnixHandleType GetType()
    {
        return m_type;
    }
};

template<UnixHandleType HT, typename T>
class UnixHandle : UnixHandleBase
{
protected:
    T m_object;
public:

    UnixHandle(T object)
    : UnixHandleBase(HT),
      m_object(object)
    {
    }

    T* GetObject()
    {
        return &m_object;
    }
};

#endif // __UNIX_HANDLE_H__