2008-05-31 19:13:08 +02:00
|
|
|
/****************************************************************************
|
2014-08-08 20:55:02 +02:00
|
|
|
* sched/pthread/pthread.h
|
2007-02-18 00:21:28 +01: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-18 00:21:28 +01:00
|
|
|
*
|
2021-02-08 16:33:58 +01:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2007-02-18 00:21:28 +01: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-18 00:21:28 +01:00
|
|
|
*
|
2008-05-31 19:13:08 +02:00
|
|
|
****************************************************************************/
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2014-08-08 20:55:02 +02:00
|
|
|
#ifndef __SCHED_PTHREAD_PTHREAD_H
|
|
|
|
#define __SCHED_PTHREAD_PTHREAD_H
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2008-05-31 19:13:08 +02:00
|
|
|
/****************************************************************************
|
2007-02-18 00:21:28 +01:00
|
|
|
* Included Files
|
2008-05-31 19:13:08 +02:00
|
|
|
****************************************************************************/
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2009-12-14 22:15:18 +01:00
|
|
|
#include <nuttx/config.h>
|
|
|
|
|
2007-02-18 00:21:28 +01:00
|
|
|
#include <sys/types.h>
|
2009-12-14 19:39:29 +01:00
|
|
|
#include <stdint.h>
|
2009-12-14 22:15:18 +01:00
|
|
|
#include <stdbool.h>
|
2007-02-18 00:21:28 +01:00
|
|
|
#include <pthread.h>
|
2011-03-31 03:42:50 +02:00
|
|
|
|
2007-02-18 00:21:28 +01:00
|
|
|
#include <nuttx/compiler.h>
|
2021-05-14 04:03:23 +02:00
|
|
|
#include <nuttx/semaphore.h>
|
|
|
|
#include <nuttx/sched.h>
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2008-05-31 19:13:08 +02:00
|
|
|
/****************************************************************************
|
2015-10-03 00:30:35 +02:00
|
|
|
* Public Data
|
2008-05-31 19:13:08 +02:00
|
|
|
****************************************************************************/
|
2007-02-18 00:21:28 +01:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
#define EXTERN extern "C"
|
2013-02-03 17:43:58 +01:00
|
|
|
extern "C"
|
|
|
|
{
|
2007-02-18 00:21:28 +01:00
|
|
|
#else
|
|
|
|
#define EXTERN extern
|
|
|
|
#endif
|
|
|
|
|
2013-02-03 17:43:58 +01:00
|
|
|
/****************************************************************************
|
|
|
|
* Public Function Prototypes
|
|
|
|
****************************************************************************/
|
|
|
|
|
2013-02-26 17:28:30 +01:00
|
|
|
struct pthread_tcb_s; /* Forward reference */
|
|
|
|
struct task_group_s; /* Forward reference */
|
2013-02-03 17:43:58 +01:00
|
|
|
|
2020-05-16 17:06:29 +02:00
|
|
|
int pthread_setup_scheduler(FAR struct pthread_tcb_s *tcb, int priority,
|
|
|
|
start_t start, pthread_startroutine_t entry);
|
2016-12-08 16:27:13 +01:00
|
|
|
|
2013-02-03 17:43:58 +01:00
|
|
|
int pthread_completejoin(pid_t pid, FAR void *exit_value);
|
|
|
|
void pthread_destroyjoin(FAR struct task_group_s *group,
|
sched/pthread/join: refactor pthread join to support join task
1. add support to join main task
| static pthread_t self;
|
| static void *join_task(void *arg)
| {
| int ret;
| ret = pthread_join(self, NULL); <--- /* Fix Task could not be joined */
| return NULL;
| }
|
| int main(int argc, char *argv[])
| {
| pthread_t thread;
|
| self = pthread_self();
|
| pthread_create(&thread, NULL, join_task, NULL);
| sleep(1);
|
| pthread_exit(NULL);
| return 0;
| }
2. Detach active thread will not alloc for additional join, just update the task flag.
3. Remove the return value waiting lock logic (data_sem),
the return value will be stored in the waiting tcb.
4. Revise the return value of pthread_join(), consistent with linux
e.g:
Joining a detached and canceled thread should return EINVAL, not ESRCH
https://pubs.opengroup.org/onlinepubs/009695399/functions/pthread_join.html
[EINVAL]
The value specified by thread does not refer to a joinable thread.
NOTE:
This PR will not increase stack usage, but struct tcb_s will increase 32 bytes.
Signed-off-by: chao an <anchao@lixiang.com>
2024-03-12 08:10:11 +01:00
|
|
|
FAR struct task_join_s *pjoin);
|
|
|
|
int pthread_findjoininfo(FAR struct task_group_s *group, pid_t pid,
|
|
|
|
FAR struct task_join_s **join, bool create);
|
2013-02-03 18:39:54 +01:00
|
|
|
void pthread_release(FAR struct task_group_s *group);
|
2017-05-29 15:05:06 +02:00
|
|
|
|
2022-12-07 11:47:08 +01:00
|
|
|
int pthread_sem_take(FAR sem_t *sem, FAR const struct timespec *abs_timeout);
|
2017-05-29 15:05:06 +02:00
|
|
|
#ifdef CONFIG_PTHREAD_MUTEX_UNSAFE
|
2023-07-07 11:06:36 +02:00
|
|
|
int pthread_sem_trytake(FAR sem_t *sem);
|
2017-05-29 15:05:06 +02:00
|
|
|
#endif
|
2023-07-07 11:06:36 +02:00
|
|
|
int pthread_sem_give(FAR sem_t *sem);
|
2017-03-27 01:37:28 +02:00
|
|
|
|
|
|
|
#ifndef CONFIG_PTHREAD_MUTEX_UNSAFE
|
2019-02-24 21:40:11 +01:00
|
|
|
int pthread_mutex_take(FAR struct pthread_mutex_s *mutex,
|
2022-12-07 11:47:24 +01:00
|
|
|
FAR const struct timespec *abs_timeout);
|
2017-03-29 15:50:40 +02:00
|
|
|
int pthread_mutex_trytake(FAR struct pthread_mutex_s *mutex);
|
2017-03-26 22:04:07 +02:00
|
|
|
int pthread_mutex_give(FAR struct pthread_mutex_s *mutex);
|
2020-06-03 20:38:39 +02:00
|
|
|
void pthread_mutex_inconsistent(FAR struct tcb_s *tcb);
|
2017-03-27 01:37:28 +02:00
|
|
|
#else
|
2023-07-07 11:06:36 +02:00
|
|
|
# define pthread_mutex_take(m,abs_timeout) pthread_sem_take(&(m)->sem,(abs_timeout))
|
|
|
|
# define pthread_mutex_trytake(m) pthread_sem_trytake(&(m)->sem)
|
|
|
|
# define pthread_mutex_give(m) pthread_sem_give(&(m)->sem)
|
2017-03-27 01:37:28 +02:00
|
|
|
#endif
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2017-03-27 17:08:14 +02:00
|
|
|
#ifdef CONFIG_PTHREAD_MUTEX_TYPES
|
2013-02-03 17:43:58 +01:00
|
|
|
int pthread_mutexattr_verifytype(int type);
|
2008-05-31 19:13:08 +02:00
|
|
|
#endif
|
|
|
|
|
2007-02-18 00:21:28 +01:00
|
|
|
#undef EXTERN
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2014-08-08 20:55:02 +02:00
|
|
|
#endif /* __SCHED_PTHREAD_PTHREAD_H */
|