2012-12-13 07:03:40 +04:00
|
|
|
/**
|
|
|
|
* WinPR: Windows Portable Runtime
|
|
|
|
* Process Thread Functions
|
|
|
|
*
|
|
|
|
* Copyright 2012 Marc-Andre Moreau <marcandre.moreau@gmail.com>
|
2015-05-27 19:24:56 +03:00
|
|
|
* Copyright 2015 Hewlett-Packard Development Company, L.P.
|
2021-03-24 20:32:43 +03:00
|
|
|
* Copyright 2021 David Fort <contact@hardening-consulting.com>
|
2012-12-13 07:03:40 +04:00
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef WINPR_THREAD_PRIVATE_H
|
|
|
|
#define WINPR_THREAD_PRIVATE_H
|
|
|
|
|
|
|
|
#ifndef _WIN32
|
|
|
|
|
2013-05-17 01:32:58 +04:00
|
|
|
#include <pthread.h>
|
|
|
|
|
2012-12-13 07:03:40 +04:00
|
|
|
#include <winpr/thread.h>
|
|
|
|
|
2013-05-17 01:32:58 +04:00
|
|
|
#include "../handle/handle.h"
|
2021-03-24 20:32:43 +03:00
|
|
|
#include "../synch/event.h"
|
|
|
|
#include "apc.h"
|
2012-12-13 07:03:40 +04:00
|
|
|
|
2022-04-27 14:33:08 +03:00
|
|
|
#ifdef __GNUC__
|
|
|
|
#define ALIGN64 __attribute__((aligned(8)))
|
|
|
|
#else
|
|
|
|
#ifdef _WIN32
|
|
|
|
#define ALIGN64 __declspec(align(8))
|
|
|
|
#else
|
|
|
|
#define ALIGN64
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
typedef void* (*pthread_start_routine)(void*);
|
2021-03-24 20:32:43 +03:00
|
|
|
typedef struct winpr_APC_item WINPR_APC_ITEM;
|
2012-12-13 07:03:40 +04:00
|
|
|
|
2022-04-27 14:33:08 +03:00
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
ALIGN64 pthread_mutex_t mux;
|
|
|
|
ALIGN64 pthread_cond_t cond;
|
|
|
|
ALIGN64 BOOL val;
|
|
|
|
} mux_condition_bundle;
|
|
|
|
|
2012-12-13 07:03:40 +04:00
|
|
|
struct winpr_thread
|
|
|
|
{
|
2013-05-17 01:32:58 +04:00
|
|
|
WINPR_HANDLE_DEF();
|
|
|
|
|
2022-04-27 14:33:08 +03:00
|
|
|
ALIGN64 BOOL started;
|
|
|
|
ALIGN64 WINPR_EVENT_IMPL event;
|
|
|
|
ALIGN64 BOOL mainProcess;
|
|
|
|
ALIGN64 BOOL detached;
|
|
|
|
ALIGN64 BOOL joined;
|
|
|
|
ALIGN64 BOOL exited;
|
|
|
|
ALIGN64 DWORD dwExitCode;
|
|
|
|
ALIGN64 pthread_t thread;
|
|
|
|
ALIGN64 SIZE_T dwStackSize;
|
|
|
|
ALIGN64 LPVOID lpParameter;
|
|
|
|
ALIGN64 pthread_mutex_t mutex;
|
|
|
|
mux_condition_bundle isRunning;
|
|
|
|
mux_condition_bundle isCreated;
|
|
|
|
ALIGN64 LPTHREAD_START_ROUTINE lpStartAddress;
|
|
|
|
ALIGN64 LPSECURITY_ATTRIBUTES lpThreadAttributes;
|
|
|
|
ALIGN64 APC_QUEUE apc;
|
2014-07-14 21:36:31 +04:00
|
|
|
#if defined(WITH_DEBUG_THREADS)
|
2022-04-27 14:33:08 +03:00
|
|
|
ALIGN64 void* create_stack;
|
|
|
|
ALIGN64 void* exit_stack;
|
2014-07-14 21:36:31 +04:00
|
|
|
#endif
|
2012-12-13 07:03:40 +04:00
|
|
|
};
|
|
|
|
|
2021-03-24 20:32:43 +03:00
|
|
|
WINPR_THREAD* winpr_GetCurrentThread(VOID);
|
|
|
|
|
2022-02-14 16:59:22 +03:00
|
|
|
typedef struct
|
2013-09-23 01:23:00 +04:00
|
|
|
{
|
|
|
|
WINPR_HANDLE_DEF();
|
|
|
|
|
|
|
|
pid_t pid;
|
|
|
|
int status;
|
2013-09-23 22:44:59 +04:00
|
|
|
DWORD dwExitCode;
|
2022-02-14 16:59:22 +03:00
|
|
|
} WINPR_PROCESS;
|
2013-09-23 01:23:00 +04:00
|
|
|
|
2012-12-13 07:03:40 +04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* WINPR_THREAD_PRIVATE_H */
|