Files
itgmania212121/src/archutils/Common/PthreadHelpers.h
T

48 lines
1.7 KiB
C++
Raw Normal View History

2011-03-17 01:47:30 -04:00
#ifndef PID_THREAD_HELPERS_H
#define PID_THREAD_HELPERS_H
2013-10-25 15:52:07 -05:00
#include "global.h"
2013-10-25 15:41:20 -05:00
2023-04-20 12:34:12 +02:00
#include <cstdint>
2011-03-17 01:47:30 -04:00
RString ThreadsVersion();
/* Get the current thread's ThreadID. */
2024-10-05 17:51:14 -07:00
uint64_t GetCurrentThreadId();
2011-03-17 01:47:30 -04:00
/* Return true if NPTL libraries are in use, false if linuxthreads. */
bool UsingNPTL();
2024-10-05 17:51:14 -07:00
int SuspendThread( uint64_t ThreadID );
int ResumeThread( uint64_t ThreadID );
2011-03-17 01:47:30 -04:00
struct BacktraceContext;
2024-10-05 17:51:14 -07:00
int GetThreadContext( uint64_t ThreadID, BacktraceContext *ctx );
2023-04-20 12:34:12 +02:00
2011-03-17 01:47:30 -04:00
#endif
/*
* (c) 2004 Glenn Maynard
* All rights reserved.
2023-04-20 12:34:12 +02:00
*
2011-03-17 01:47:30 -04:00
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the
* "Software"), to deal in the Software without restriction, including
* without limitation the rights to use, copy, modify, merge, publish,
* distribute, and/or sell copies of the Software, and to permit persons to
* whom the Software is furnished to do so, provided that the above
* copyright notice(s) and this permission notice appear in all copies of
* the Software and that both the above copyright notice(s) and this
* permission notice appear in supporting documentation.
2023-04-20 12:34:12 +02:00
*
2011-03-17 01:47:30 -04:00
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT
* OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
* OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
* OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
* PERFORMANCE OF THIS SOFTWARE.
*/