medfall

A super great game engine
Log | Files | Refs

dyn_thread.hpp (1052B)


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
/*  Relacy Race Detector
 *  Copyright (c) 2008-2010, Dmitry S. Vyukov
 *  All rights reserved.
 *  This software is provided AS-IS with no warranty, either express or implied.
 *  This software is distributed under a license and may not be copied,
 *  modified or distributed except as expressly authorized under the
 *  terms of the license contained in the file LICENSE.TXT in this distribution.
 */

#ifndef RL_DYN_THREAD_HPP
#define RL_DYN_THREAD_HPP
#ifdef _MSC_VER
#   pragma once
#endif

#include "base.hpp"
#include "context_base.hpp"
#include "stdlib/semaphore.hpp"


namespace rl
{


class dyn_thread : nocopy<>
{
public:
    dyn_thread()
    {
        handle_ = 0;
    }

    void start(void*(*fn)(void*), void* arg)
    {
        RL_VERIFY(handle_ == 0);
        handle_ = ctx().create_thread(fn, arg);
    }

    void join()
    {
        RL_VERIFY(handle_);
        handle_->wait(false, false, $);
        handle_ = 0;
    }

private:
    win_waitable_object* handle_;
};


}

#endif