Main MRPT website > C++ reference for MRPT 1.9.9
macOS/thread.hpp
Go to the documentation of this file.
1 /*
2  * RPLIDAR SDK
3  *
4  * Copyright (c) 2009 - 2014 RoboPeak Team
5  * http://www.robopeak.com
6  * Copyright (c) 2014 - 2016 Shanghai Slamtec Co., Ltd.
7  * http://www.slamtec.com
8  *
9  */
10 /*
11  * Redistribution and use in source and binary forms, with or without
12  * modification, are permitted provided that the following conditions are met:
13  *
14  * 1. Redistributions of source code must retain the above copyright notice,
15  * this list of conditions and the following disclaimer.
16  *
17  * 2. Redistributions in binary form must reproduce the above copyright notice,
18  * this list of conditions and the following disclaimer in the documentation
19  * and/or other materials provided with the distribution.
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
22  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
23  * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
24  * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
25  * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
26  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
27  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
28  * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
29  * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
30  * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
31  * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32  *
33  */
34 
35 #include "arch/macOS/arch_macOS.h"
36 
37 namespace rp{ namespace hal{
38 
39 Thread Thread::create(thread_proc_t proc, void * data)
40 {
41  Thread newborn(proc, data);
42 
43  // tricky code, we assume pthread_t is not a structure but a word size value
44  assert( sizeof(newborn._handle) >= sizeof(pthread_t));
45 
46  pthread_create((pthread_t *)&newborn._handle, NULL,(void * (*)(void *))proc, data);
47 
48  return newborn;
49 }
50 
52 {
53  if (!this->_handle) return RESULT_OK;
54 
55  // return pthread_cancel((pthread_t)this->_handle)==0?RESULT_OK:RESULT_OPERATION_FAIL;
56  return RESULT_OK;
57 }
58 
59 u_result Thread::setPriority( priority_val_t p)
60 {
61  if (!this->_handle) return RESULT_OPERATION_FAIL;
62  // simply ignore this request
63  return RESULT_OK;
64 }
65 
67 {
68  return PRIORITY_NORMAL;
69 }
70 
71 u_result Thread::join(unsigned long timeout)
72 {
73  if (!this->_handle) return RESULT_OK;
74 
75  pthread_join((pthread_t)(this->_handle), NULL);
76  return RESULT_OK;
77 }
78 
79 }}
rp::hal::Thread::join
u_result join(unsigned long timeout=-1)
Definition: linux/thread.hpp:129
u_result
uint32_t u_result
Definition: rptypes.h:95
rp::hal::Thread::priority_val_t
priority_val_t
Definition: thread.h:46
rp::hal::Thread::_handle
_word_size_t _handle
Definition: thread.h:90
RESULT_OK
#define RESULT_OK
Definition: rptypes.h:97
rp::hal::Thread::PRIORITY_NORMAL
@ PRIORITY_NORMAL
Definition: thread.h:50
p
GLfloat GLfloat p
Definition: glext.h:6305
thread_proc_t
_word_size_t(THREAD_PROC * thread_proc_t)(void *)
Definition: rptypes.h:111
rp::hal::Thread::create
static Thread create(thread_proc_t proc, void *data=nullptr)
Definition: linux/thread.hpp:41
data
GLsizei GLsizei GLenum GLenum const GLvoid * data
Definition: glext.h:3547
rp::hal::Thread::Thread
Thread()
Definition: thread.h:70
rp::hal::Thread::getPriority
priority_val_t getPriority()
Definition: linux/thread.hpp:103
RESULT_OPERATION_FAIL
#define RESULT_OPERATION_FAIL
Definition: rptypes.h:101
rp::hal::Thread::terminate
u_result terminate()
Definition: linux/thread.hpp:53
arch_macOS.h
rp
Definition: rplidar_driver.h:40
rp::hal::Thread::setPriority
u_result setPriority(priority_val_t p)
Definition: linux/thread.hpp:60



Page generated by Doxygen 1.8.17 for MRPT 1.9.9 Git: ad3a9d8ae Tue May 1 23:10:22 2018 -0700 at miƩ 12 jul 2023 10:03:34 CEST