xsthread.c
Go to the documentation of this file.
1 
2 // Copyright (c) 2003-2021 Xsens Technologies B.V. or subsidiaries worldwide.
3 // All rights reserved.
4 //
5 // Redistribution and use in source and binary forms, with or without modification,
6 // are permitted provided that the following conditions are met:
7 //
8 // 1. Redistributions of source code must retain the above copyright notice,
9 // this list of conditions, and the following disclaimer.
10 //
11 // 2. Redistributions in binary form must reproduce the above copyright notice,
12 // this list of conditions, and the following disclaimer in the documentation
13 // and/or other materials provided with the distribution.
14 //
15 // 3. Neither the names of the copyright holders nor the names of their contributors
16 // may be used to endorse or promote products derived from this software without
17 // specific prior written permission.
18 //
19 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
20 // EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
21 // MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
22 // THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23 // SPECIAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
24 // OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
25 // HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY OR
26 // TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
27 // SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.THE LAWS OF THE NETHERLANDS
28 // SHALL BE EXCLUSIVELY APPLICABLE AND ANY DISPUTES SHALL BE FINALLY SETTLED UNDER THE RULES
29 // OF ARBITRATION OF THE INTERNATIONAL CHAMBER OF COMMERCE IN THE HAGUE BY ONE OR MORE
30 // ARBITRATORS APPOINTED IN ACCORDANCE WITH SAID RULES.
31 //
32 
33 
34 // Copyright (c) 2003-2021 Xsens Technologies B.V. or subsidiaries worldwide.
35 // All rights reserved.
36 //
37 // Redistribution and use in source and binary forms, with or without modification,
38 // are permitted provided that the following conditions are met:
39 //
40 // 1. Redistributions of source code must retain the above copyright notice,
41 // this list of conditions, and the following disclaimer.
42 //
43 // 2. Redistributions in binary form must reproduce the above copyright notice,
44 // this list of conditions, and the following disclaimer in the documentation
45 // and/or other materials provided with the distribution.
46 //
47 // 3. Neither the names of the copyright holders nor the names of their contributors
48 // may be used to endorse or promote products derived from this software without
49 // specific prior written permission.
50 //
51 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
52 // EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
53 // MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
54 // THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
55 // SPECIAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
56 // OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
57 // HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY OR
58 // TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
59 // SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.THE LAWS OF THE NETHERLANDS
60 // SHALL BE EXCLUSIVELY APPLICABLE AND ANY DISPUTES SHALL BE FINALLY SETTLED UNDER THE RULES
61 // OF ARBITRATION OF THE INTERNATIONAL CHAMBER OF COMMERCE IN THE HAGUE BY ONE OR MORE
62 // ARBITRATORS APPOINTED IN ACCORDANCE WITH SAID RULES.
63 //
64 
65 #include "xsthread.h"
66 
67 #ifdef _WIN32
68 #define MS_VC_EXCEPTION 0x406D1388
69 
70 #pragma pack(push,8)
71 // Copied from windows API
72 struct THREADNAME_INFO
73 {
74  DWORD dwType; // Must be 0x1000.
75  LPCSTR szName; // Pointer to name (in user addr space).
76  DWORD dwThreadID; // XsThread ID (-1=caller thread).
77  DWORD dwFlags; // Reserved for future use, must be zero.
78 };
79 #pragma pack(pop)
80 typedef struct THREADNAME_INFO THREADNAME_INFO;
81 
90 void XSTYPES_DLL_API xsNameThisThread(const char* threadName)
91 {
92  DWORD dwThreadID = GetCurrentThreadId();
93 
94  //Sleep(10);
95  THREADNAME_INFO info;
96  info.dwType = 0x1000;
97  info.szName = threadName;
98  info.dwThreadID = dwThreadID;
99  info.dwFlags = 0;
100 
101  __try
102  {
103  RaiseException(MS_VC_EXCEPTION, 0, sizeof(info) / sizeof(ULONG_PTR), (ULONG_PTR*)&info);
104  }
105  __except (EXCEPTION_EXECUTE_HANDLER)
106  {
107  }
108 }
109 
112 #else
113 #include <string.h>
114 #ifdef __APPLE__
115 inline static int pthread_setname_np2(pthread_t __target_thread, const char* __name)
116 {
117  (void) __target_thread;
118  return pthread_setname_np(__name);
119 }
120 #else
121 /* Set thread name visible in the kernel and its interfaces. */
122 extern int pthread_setname_np(pthread_t __target_thread, const char* __name);
123 
124 inline static int pthread_setname_np2(pthread_t __target_thread, const char* __name)
125 {
126  return pthread_setname_np(__target_thread, __name);
127 }
128 
129 #endif
130 
140 void XSTYPES_DLL_API xsNameThisThread(const char* threadName)
141 {
142  if (!threadName || !threadName[0])
143  return;
144  if (pthread_setname_np2(xsGetCurrentThreadId(), threadName) == ERANGE)
145  {
146  char dup[16];
147  strncpy(dup, threadName, 11);
148  strncpy(dup + 11, threadName + strlen(threadName) - 4, 4);
149  dup[15] = 0;
151  }
152 }
153 
156 pthread_t XSTYPES_DLL_API xsStartThread(void* (func)(void*), void* param, void* pid)
157 {
158  (void)pid;
159  pthread_t thread;
160  if (pthread_create(&thread, NULL, func, param))
161  return XSENS_INVALID_THREAD;
162  return thread;
163 }
164 
165 #endif
xsNameThisThread
void XSTYPES_DLL_API xsNameThisThread(const char *threadName)
Set the name of the current thread to threadName.
Definition: xsthread.c:140
xsthread.h
pthread_setname_np2
static int pthread_setname_np2(pthread_t __target_thread, const char *__name)
Definition: xsthread.c:124
xsStartThread
pthread_t XSTYPES_DLL_API xsStartThread(void *(func)(void *), void *param, void *pid)
Start a function as a thread.
Definition: xsthread.c:156
pthread_setname_np
int pthread_setname_np(pthread_t __target_thread, const char *__name)
XSENS_INVALID_THREAD
#define XSENS_INVALID_THREAD
Definition: xsthread.h:179
XSTYPES_DLL_API
#define XSTYPES_DLL_API
Definition: xstypesconfig.h:65
param
T param(const std::string &param_name, const T &default_val)
xsGetCurrentThreadId
#define xsGetCurrentThreadId()
Definition: xsthread.h:191
LPCSTR
const typedef std::string & LPCSTR
Definition: stackwalker_linux.h:70


xsens_mti_driver
Author(s):
autogenerated on Sun Sep 3 2023 02:43:20