1
0
mirror of https://github.com/azure-rtos/threadx synced 2025-02-06 08:08:27 +08:00

58 lines
3.0 KiB
C
Raw Permalink Normal View History

2024-01-29 13:51:15 +08:00
/***************************************************************************
* Copyright (c) 2024 Microsoft Corporation
*
* This program and the accompanying materials are made available under the
* terms of the MIT License which is available at
* https://opensource.org/licenses/MIT.
*
* SPDX-License-Identifier: MIT
**************************************************************************/
2020-09-30 15:42:41 -07:00
/**************************************************************************/
/**************************************************************************/
/** */
2021-06-02 06:45:05 +00:00
/** ThreadX Component */
2020-09-30 15:42:41 -07:00
/** */
2021-06-02 06:45:05 +00:00
/** POSIX Compliancy Wrapper (POSIX) */
2020-09-30 15:42:41 -07:00
/** */
/**************************************************************************/
/**************************************************************************/
/**************************************************************************/
/* */
2021-06-02 06:45:05 +00:00
/* EKP DEFINITIONS RELEASE */
2020-09-30 15:42:41 -07:00
/* */
2021-06-02 06:45:05 +00:00
/* sched.h PORTABLE C */
2021-07-28 07:24:02 +00:00
/* 6.1.7 */
2020-09-30 15:42:41 -07:00
/* AUTHOR */
/* */
2021-06-02 06:45:05 +00:00
/* William E. Lamie, Microsoft Corporation */
2020-09-30 15:42:41 -07:00
/* */
/* DESCRIPTION */
/* */
2021-06-02 06:45:05 +00:00
/* This file defines the constants, structures, etc.needed to */
/* implement the Evacuation Kit for POSIX Users (POSIX) */
/* */
2020-09-30 15:42:41 -07:00
/* */
/* RELEASE HISTORY */
/* */
/* DATE NAME DESCRIPTION */
/* */
2021-07-28 07:24:02 +00:00
/* 06-02-2021 William E. Lamie Initial Version 6.1.7 */
2020-09-30 15:42:41 -07:00
/* */
/**************************************************************************/
2021-06-02 06:45:05 +00:00
#ifndef _PTHREAD_H
#define _PTHREAD_H
2020-09-30 15:42:41 -07:00
2021-06-02 06:45:05 +00:00
#include "tx_api.h"
#include "errno.h"
#include "fcntl.h"
#include "sched.h"
#include "time.h"
#include "signal.h"
#include "tx_posix.h"
2020-09-30 15:42:41 -07:00
#endif