You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1.6 KiB
C
48 lines
1.6 KiB
C
/*
|
|
Copyright (c) 2021 Roger Light <roger@atchoo.org>
|
|
|
|
All rights reserved. This program and the accompanying materials
|
|
are made available under the terms of the Eclipse Public License 2.0
|
|
and Eclipse Distribution License v1.0 which accompany this distribution.
|
|
|
|
The Eclipse Public License is available at
|
|
https://www.eclipse.org/legal/epl-2.0/
|
|
and the Eclipse Distribution License is available at
|
|
http://www.eclipse.org/org/documents/edl-v10.php.
|
|
|
|
SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause
|
|
|
|
Contributors:
|
|
Roger Light - initial implementation and documentation.
|
|
*/
|
|
#ifndef WINTHREAD_MOSQ_H
|
|
#define WINTHREAD_MOSQ_H
|
|
|
|
#if defined(WIN32) && defined(WITH_THREADING)
|
|
|
|
#include <windows.h>
|
|
#include <synchapi.h>
|
|
|
|
typedef HANDLE pthread_t;
|
|
typedef void pthread_attr_t;
|
|
typedef CRITICAL_SECTION pthread_mutex_t;
|
|
typedef void pthread_mutexattr_t;
|
|
typedef CONDITION_VARIABLE pthread_cond_t;
|
|
typedef void pthread_condattr_t;
|
|
|
|
|
|
int pthread_create(pthread_t *thread, const pthread_attr_t *attr, void *(*start_routine) (void *), void *arg);
|
|
int pthread_join(pthread_t thread, void **retval);
|
|
int pthread_self(void);
|
|
int pthread_mutex_init(pthread_mutex_t *mutex, const pthread_mutexattr_t *attr);
|
|
int pthread_mutex_destroy(pthread_mutex_t *mutex);
|
|
int pthread_mutex_lock(pthread_mutex_t *mutex);
|
|
int pthread_mutex_unlock(pthread_mutex_t *mutex);
|
|
int pthread_cond_init(pthread_cond_t *cond, pthread_condattr_t *attr);
|
|
int pthread_cond_destroy(pthread_cond_t *cond);
|
|
int pthread_cond_wait(pthread_cond_t *cond, pthread_mutex_t *mutex);
|
|
int pthread_cond_signal(pthread_cond_t *cond);
|
|
|
|
#endif
|
|
#endif
|