| [25656] | 1 | /* Copyright (C) 2021 Wildfire Games.
|
|---|
| [6830] | 2 | *
|
|---|
| [7316] | 3 | * Permission is hereby granted, free of charge, to any person obtaining
|
|---|
| 4 | * a copy of this software and associated documentation files (the
|
|---|
| 5 | * "Software"), to deal in the Software without restriction, including
|
|---|
| 6 | * without limitation the rights to use, copy, modify, merge, publish,
|
|---|
| 7 | * distribute, sublicense, and/or sell copies of the Software, and to
|
|---|
| 8 | * permit persons to whom the Software is furnished to do so, subject to
|
|---|
| 9 | * the following conditions:
|
|---|
| [18989] | 10 | *
|
|---|
| [7316] | 11 | * The above copyright notice and this permission notice shall be included
|
|---|
| 12 | * in all copies or substantial portions of the Software.
|
|---|
| [18989] | 13 | *
|
|---|
| [7316] | 14 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|---|
| 15 | * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|---|
| 16 | * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|---|
| 17 | * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|---|
| 18 | * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|---|
| 19 | * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|---|
| 20 | * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|---|
| [6830] | 21 | */
|
|---|
| 22 |
|
|---|
| [5376] | 23 | // note: the BFD stuff *could* be used on other platforms, if we saw the
|
|---|
| 24 | // need for it.
|
|---|
| 25 |
|
|---|
| 26 | #include "precompiled.h"
|
|---|
| 27 |
|
|---|
| 28 | #include "lib/sysdep/sysdep.h"
|
|---|
| 29 | #include "lib/debug.h"
|
|---|
| 30 |
|
|---|
| [25656] | 31 | #include <pthread.h>
|
|---|
| 32 |
|
|---|
| [7172] | 33 | void* debug_GetCaller(void* UNUSED(context), const wchar_t* UNUSED(lastFuncToSkip))
|
|---|
| [5376] | 34 | {
|
|---|
| 35 | return NULL;
|
|---|
| 36 | }
|
|---|
| 37 |
|
|---|
| [9412] | 38 | Status debug_DumpStack(wchar_t* UNUSED(buf), size_t UNUSED(max_chars), void* UNUSED(context), const wchar_t* UNUSED(lastFuncToSkip))
|
|---|
| [5376] | 39 | {
|
|---|
| [9453] | 40 | return ERR::NOT_SUPPORTED;
|
|---|
| [5376] | 41 | }
|
|---|
| 42 |
|
|---|
| [9412] | 43 | Status debug_ResolveSymbol(void* UNUSED(ptr_of_interest), wchar_t* UNUSED(sym_name), wchar_t* UNUSED(file), int* UNUSED(line))
|
|---|
| [5376] | 44 | {
|
|---|
| [9453] | 45 | return ERR::NOT_SUPPORTED;
|
|---|
| [5376] | 46 | }
|
|---|
| 47 |
|
|---|
| [25656] | 48 | void debug_SetThreadName(char const* name)
|
|---|
| [6207] | 49 | {
|
|---|
| [25656] | 50 | pthread_setname_np(name);
|
|---|
| [6207] | 51 | }
|
|---|