2008-05-31 17:13:08 +00:00
|
|
|
/****************************************************************************
|
2014-08-08 12:55:02 -06:00
|
|
|
* sched/pthread/pthread.h
|
2007-02-17 23:21:28 +00:00
|
|
|
*
|
2021-02-08 16:33:58 +01:00
|
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
* contributor license agreements. See the NOTICE file distributed with
|
|
|
|
* this work for additional information regarding copyright ownership. The
|
|
|
|
* ASF licenses this file to you 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
|
2007-02-17 23:21:28 +00:00
|
|
|
*
|
2021-02-08 16:33:58 +01:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2007-02-17 23:21:28 +00:00
|
|
|
*
|
2021-02-08 16:33:58 +01:00
|
|
|
* 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.
|
2007-02-17 23:21:28 +00:00
|
|
|
*
|
2008-05-31 17:13:08 +00:00
|
|
|
****************************************************************************/
|
2007-02-17 23:21:28 +00:00
|
|
|
|
2014-08-08 12:55:02 -06:00
|
|
|
#ifndef __SCHED_PTHREAD_PTHREAD_H
|
|
|
|
#define __SCHED_PTHREAD_PTHREAD_H
|
2007-02-17 23:21:28 +00:00
|
|
|
|
2008-05-31 17:13:08 +00:00
|
|
|
/****************************************************************************
|
2007-02-17 23:21:28 +00:00
|
|
|
* Included Files
|
2008-05-31 17:13:08 +00:00
|
|
|
****************************************************************************/
|
2007-02-17 23:21:28 +00:00
|
|
|
|
2009-12-14 21:15:18 +00:00
|
|
|
#include <nuttx/config.h>
|
|
|
|
|
2007-02-17 23:21:28 +00:00
|
|
|
#include <sys/types.h>
|
2009-12-14 18:39:29 +00:00
|
|
|
#include <stdint.h>
|
2009-12-14 21:15:18 +00:00
|
|
|
#include <stdbool.h>
|
2007-02-17 23:21:28 +00:00
|
|
|
#include <pthread.h>
|
2013-02-04 21:24:00 +00:00
|
|
|
#include <sched.h>
|
2011-03-31 01:42:50 +00:00
|
|
|
|
2007-02-17 23:21:28 +00:00
|
|
|
#include <nuttx/compiler.h>
|
|
|
|
|
2008-05-31 17:13:08 +00:00
|
|
|
/****************************************************************************
|
2007-02-17 23:21:28 +00:00
|
|
|
* Public Type Declarations
|
2008-05-31 17:13:08 +00:00
|
|
|
****************************************************************************/
|
2007-02-17 23:21:28 +00:00
|
|
|
|
2012-07-14 19:30:31 +00:00
|
|
|
/* The following defines an entry in the pthread logic's local data set.
|
|
|
|
* Note that this structure is used to implemented a singly linked list.
|
|
|
|
* This structure is used (instead of, say, a binary search tree) because
|
|
|
|
* the data set will be searched using the pid as a key -- a process IDs will
|
|
|
|
* always be created in a montonically increasing fashion.
|
2007-02-17 23:21:28 +00:00
|
|
|
*/
|
|
|
|
|
2014-04-13 14:32:20 -06:00
|
|
|
struct join_s
|
2007-02-17 23:21:28 +00:00
|
|
|
{
|
2007-02-27 21:17:21 +00:00
|
|
|
FAR struct join_s *next; /* Implements link list */
|
2009-12-14 18:39:29 +00:00
|
|
|
uint8_t crefs; /* Reference count */
|
2009-12-14 21:15:18 +00:00
|
|
|
bool started; /* true: pthread started. */
|
|
|
|
bool detached; /* true: pthread_detached'ed */
|
|
|
|
bool terminated; /* true: detach'ed+exit'ed */
|
2007-02-17 23:21:28 +00:00
|
|
|
pthread_t thread; /* Includes pid */
|
|
|
|
sem_t exit_sem; /* Implements join */
|
|
|
|
sem_t data_sem; /* Implements join */
|
|
|
|
pthread_addr_t exit_value; /* Returned data */
|
|
|
|
};
|
2012-07-14 19:30:31 +00:00
|
|
|
|
2008-05-31 17:13:08 +00:00
|
|
|
/****************************************************************************
|
2015-10-02 16:30:35 -06:00
|
|
|
* Public Data
|
2008-05-31 17:13:08 +00:00
|
|
|
****************************************************************************/
|
2007-02-17 23:21:28 +00:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
#define EXTERN extern "C"
|
2013-02-03 16:43:58 +00:00
|
|
|
extern "C"
|
|
|
|
{
|
2007-02-17 23:21:28 +00:00
|
|
|
#else
|
|
|
|
#define EXTERN extern
|
|
|
|
#endif
|
|
|
|
|
2013-02-03 16:43:58 +00:00
|
|
|
/****************************************************************************
|
|
|
|
* Public Function Prototypes
|
|
|
|
****************************************************************************/
|
|
|
|
|
2013-02-26 16:28:30 +00:00
|
|
|
struct pthread_tcb_s; /* Forward reference */
|
|
|
|
struct task_group_s; /* Forward reference */
|
2013-02-03 16:43:58 +00:00
|
|
|
|
|
|
|
void weak_function pthread_initialize(void);
|
2020-05-16 09:06:29 -06:00
|
|
|
int pthread_setup_scheduler(FAR struct pthread_tcb_s *tcb, int priority,
|
|
|
|
start_t start, pthread_startroutine_t entry);
|
2016-12-08 09:27:13 -06:00
|
|
|
|
|
|
|
#ifdef CONFIG_PTHREAD_CLEANUP
|
2020-06-04 02:11:04 +08:00
|
|
|
void pthread_cleanup_popall(FAR struct tcb_s *tcb);
|
2016-12-08 09:27:13 -06:00
|
|
|
#endif
|
|
|
|
|
2013-02-03 16:43:58 +00:00
|
|
|
int pthread_completejoin(pid_t pid, FAR void *exit_value);
|
|
|
|
void pthread_destroyjoin(FAR struct task_group_s *group,
|
|
|
|
FAR struct join_s *pjoin);
|
|
|
|
FAR struct join_s *pthread_findjoininfo(FAR struct task_group_s *group,
|
|
|
|
pid_t pid);
|
2013-02-03 17:39:54 +00:00
|
|
|
void pthread_release(FAR struct task_group_s *group);
|
2017-05-29 07:05:06 -06:00
|
|
|
|
2019-02-24 14:40:11 -06:00
|
|
|
int pthread_sem_take(FAR sem_t *sem, FAR const struct timespec *abs_timeout,
|
|
|
|
bool intr);
|
2017-05-29 07:05:06 -06:00
|
|
|
#ifdef CONFIG_PTHREAD_MUTEX_UNSAFE
|
|
|
|
int pthread_sem_trytake(sem_t *sem);
|
|
|
|
#endif
|
|
|
|
int pthread_sem_give(sem_t *sem);
|
2017-03-26 17:37:28 -06:00
|
|
|
|
|
|
|
#ifndef CONFIG_PTHREAD_MUTEX_UNSAFE
|
2019-02-24 14:40:11 -06:00
|
|
|
int pthread_mutex_take(FAR struct pthread_mutex_s *mutex,
|
|
|
|
FAR const struct timespec *abs_timeout, bool intr);
|
2017-03-29 07:50:40 -06:00
|
|
|
int pthread_mutex_trytake(FAR struct pthread_mutex_s *mutex);
|
2017-03-26 14:04:07 -06:00
|
|
|
int pthread_mutex_give(FAR struct pthread_mutex_s *mutex);
|
2020-06-04 02:38:39 +08:00
|
|
|
void pthread_mutex_inconsistent(FAR struct tcb_s *tcb);
|
2017-03-26 17:37:28 -06:00
|
|
|
#else
|
2019-02-24 20:04:24 +00:00
|
|
|
# define pthread_mutex_take(m,abs_timeout,i) pthread_sem_take(&(m)->sem,(abs_timeout),(i))
|
|
|
|
# define pthread_mutex_trytake(m) pthread_sem_trytake(&(m)->sem)
|
|
|
|
# define pthread_mutex_give(m) pthread_sem_give(&(m)->sem)
|
2017-03-26 17:37:28 -06:00
|
|
|
#endif
|
2007-02-17 23:21:28 +00:00
|
|
|
|
2017-03-27 09:08:14 -06:00
|
|
|
#ifdef CONFIG_PTHREAD_MUTEX_TYPES
|
2013-02-03 16:43:58 +00:00
|
|
|
int pthread_mutexattr_verifytype(int type);
|
2008-05-31 17:13:08 +00:00
|
|
|
#endif
|
|
|
|
|
2007-02-17 23:21:28 +00:00
|
|
|
#undef EXTERN
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2014-08-08 12:55:02 -06:00
|
|
|
#endif /* __SCHED_PTHREAD_PTHREAD_H */
|