mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-19 11:18:28 +00:00
cb3761ea99
Signed-off-by: Wolfgang Denk <wd@denx.de> [trini Don't remove some copyrights by accident] Signed-off-by: Tom Rini <trini@ti.com>
74 lines
1.2 KiB
C
74 lines
1.2 KiB
C
/**
|
|
* @file IxOsalOsThread.c (eCos)
|
|
*
|
|
* @brief OS-specific thread implementation.
|
|
*
|
|
*
|
|
* @par
|
|
* IXP400 SW Release version 1.5
|
|
*
|
|
* -- Copyright Notice --
|
|
*
|
|
* @par
|
|
* Copyright 2001-2005, Intel Corporation.
|
|
* All rights reserved.
|
|
*
|
|
* @par
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
* @par
|
|
* -- End of Copyright Notice --
|
|
*/
|
|
|
|
#include "IxOsal.h"
|
|
|
|
/* Thread attribute is ignored */
|
|
PUBLIC IX_STATUS
|
|
ixOsalThreadCreate (IxOsalThread * ptrTid,
|
|
IxOsalThreadAttr * threadAttr, IxOsalVoidFnVoidPtr entryPoint, void *arg)
|
|
{
|
|
return IX_SUCCESS;
|
|
}
|
|
|
|
/*
|
|
* Start thread after given its thread handle
|
|
*/
|
|
PUBLIC IX_STATUS
|
|
ixOsalThreadStart (IxOsalThread * tId)
|
|
{
|
|
/* Thread already started upon creation */
|
|
return IX_SUCCESS;
|
|
}
|
|
|
|
/*
|
|
* In Linux threadKill does not actually destroy the thread,
|
|
* it will stop the signal handling.
|
|
*/
|
|
PUBLIC IX_STATUS
|
|
ixOsalThreadKill (IxOsalThread * tid)
|
|
{
|
|
return IX_SUCCESS;
|
|
}
|
|
|
|
PUBLIC void
|
|
ixOsalThreadExit (void)
|
|
{
|
|
}
|
|
|
|
PUBLIC IX_STATUS
|
|
ixOsalThreadPrioritySet (IxOsalOsThread * tid, UINT32 priority)
|
|
{
|
|
return IX_SUCCESS;
|
|
}
|
|
|
|
PUBLIC IX_STATUS
|
|
ixOsalThreadSuspend (IxOsalThread * tId)
|
|
{
|
|
return IX_SUCCESS;
|
|
|
|
}
|
|
|
|
PUBLIC IX_STATUS
|
|
ixOsalThreadResume (IxOsalThread * tId)
|
|
{
|
|
return IX_SUCCESS;
|
|
}
|