MRPT  1.9.9
thread.h
Go to the documentation of this file.
1 /* +------------------------------------------------------------------------+
2  | Mobile Robot Programming Toolkit (MRPT) |
3  | http://www.mrpt.org/ |
4  | |
5  | Copyright (c) 2005-2018, Individual contributors, see AUTHORS file |
6  | See: http://www.mrpt.org/Authors - All rights reserved. |
7  | Released under BSD License. See details in http://www.mrpt.org/License |
8  +------------------------------------------------------------------------+ */
9 /*
10  * Redistribution and use in source and binary forms, with or without
11  * modification, are permitted provided that the following conditions are met:
12  *
13  * 1. Redistributions of source code must retain the above copyright notice,
14  * this list of conditions and the following disclaimer.
15  *
16  * 2. Redistributions in binary form must reproduce the above copyright notice,
17  * this list of conditions and the following disclaimer in the documentation
18  * and/or other materials provided with the distribution.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
21  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
22  * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
23  * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
24  * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
25  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
26  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
27  * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
28  * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
29  * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
30  * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31  *
32  */
33 
34 #pragma once
35 
36 #include "rptypes.h"
37 #define CLASS_THREAD(c, x) rp::hal::Thread::create_member<c, &c::x>(this)
38 
39 namespace rp::hal
40 {
41 class Thread
42 {
43  public:
45  {
51  };
52 
53  template <class T, u_result (T::*PROC)(void)>
54  static Thread create_member(T* pthis)
55  {
56  return create(_thread_thunk<T, PROC>, pthis);
57  }
58 
59  template <class T, u_result (T::*PROC)(void)>
60  static _word_size_t THREAD_PROC _thread_thunk(void* data)
61  {
62  return (static_cast<T*>(data)->*PROC)();
63  }
64  static Thread create(thread_proc_t proc, void* data = nullptr);
65 
66  public:
67  ~Thread() {}
68  Thread() : _data(nullptr), _func(nullptr), _handle(0) {}
69  _word_size_t getHandle() { return _handle; }
71  void* getData() { return _data; }
72  u_result join(unsigned long timeout = -1);
75 
76  bool operator==(const Thread& right)
77  {
78  return this->_handle == right._handle;
79  }
80 
81  protected:
82  Thread(thread_proc_t proc, void* data)
83  : _data(data), _func(proc), _handle(0)
84  {
85  }
86  void* _data;
88  _word_size_t _handle;
89 };
90 }
91 
void * getData()
Definition: thread.h:71
static Thread create(thread_proc_t proc, void *data=nullptr)
_word_size_t _handle
Definition: thread.h:88
_word_size_t getHandle()
Definition: thread.h:69
u_result join(unsigned long timeout=-1)
_word_size_t(THREAD_PROC * thread_proc_t)(void *)
Definition: rptypes.h:111
static _word_size_t THREAD_PROC _thread_thunk(void *data)
Definition: thread.h:60
thread_proc_t _func
Definition: thread.h:87
static Thread create_member(T *pthis)
Definition: thread.h:54
u_result setPriority(priority_val_t p)
bool operator==(const Thread &right)
Definition: thread.h:76
priority_val_t getPriority()
void * _data
Definition: thread.h:86
u_result terminate()
Thread(thread_proc_t proc, void *data)
Definition: thread.h:82
GLsizei GLsizei GLenum GLenum const GLvoid * data
Definition: glext.h:3546
GLfloat GLfloat p
Definition: glext.h:6305
uint32_t u_result
Definition: rptypes.h:95



Page generated by Doxygen 1.8.14 for MRPT 1.9.9 Git: 7d5e6d718 Fri Aug 24 01:51:28 2018 +0200 at lun nov 2 08:35:50 CET 2020