⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ixosalosthread.c

📁 有关ARM开发板上的IXP400网络驱动程序的源码以。
💻 C
字号:
/** * @file IxOsalOsThread.c (linux) * * @brief OS-specific thread implementation. *  *  * @par * IXP400 SW Release version 2.1 *  * -- Copyright Notice -- *  * @par * Copyright (c) 2001-2005, Intel Corporation. * All rights reserved. *  * @par * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright *    notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright *    notice, this list of conditions and the following disclaimer in the *    documentation and/or other materials provided with the distribution. * 3. Neither the name of the Intel Corporation nor the names of its contributors *    may be used to endorse or promote products derived from this software *    without specific prior written permission. *  *  * @par * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS'' * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. *  *  * @par * -- End of Copyright Notice -- */#include <linux/sched.h>#include "IxOsal.h"PRIVATE struct{    IxOsalVoidFnVoidPtr entryPoint;    void *arg;} IxOsalOsThreadData;/* declaring mutex */DECLARE_MUTEX (IxOsalThreadMutex);static intthread_internal (void *unused){    IxOsalVoidFnVoidPtr entryPoint = IxOsalOsThreadData.entryPoint;    void *arg = IxOsalOsThreadData.arg;    static int seq = 0;    daemonize ();    reparent_to_init ();    exit_files (current);    snprintf(current->comm, sizeof(current->comm), "IxOsal %d", ++seq);    up (&IxOsalThreadMutex);    entryPoint (arg);    return 0;}/* Thread attribute is ignored */PUBLIC IX_STATUSixOsalThreadCreate (IxOsalThread * ptrTid,    IxOsalThreadAttr * threadAttr, IxOsalVoidFnVoidPtr entryPoint, void *arg){    down (&IxOsalThreadMutex);    IxOsalOsThreadData.entryPoint = entryPoint;    IxOsalOsThreadData.arg = arg;    /*     * kernel_thread takes: int (*fn)(void *)  as the first input.     */    *ptrTid = kernel_thread (thread_internal, NULL, CLONE_SIGHAND);    if (*ptrTid < 0)    {        up (&IxOsalThreadMutex);        ixOsalLog (IX_OSAL_LOG_LVL_ERROR,            IX_OSAL_LOG_DEV_STDOUT,            "ixOsalThreadCreate(): fail to generate thread \n",            0, 0, 0, 0, 0, 0);        return IX_FAIL;    }    return IX_SUCCESS;}/*  * Start thread after given its thread handle */PUBLIC IX_STATUSixOsalThreadStart (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_STATUSixOsalThreadKill (IxOsalThread * tid){    kill_proc (*tid, SIGKILL, 1);    return IX_SUCCESS;}PUBLIC voidixOsalThreadExit (void){    ixOsalLog (IX_OSAL_LOG_LVL_MESSAGE,        IX_OSAL_LOG_DEV_STDOUT,        "ixOsalThreadExit(): not implemented \n", 0, 0, 0, 0, 0, 0);}PUBLIC IX_STATUSixOsalThreadPrioritySet (IxOsalOsThread * tid, UINT32 priority){    return IX_SUCCESS;}PUBLIC IX_STATUSixOsalThreadSuspend (IxOsalThread * tId){    ixOsalLog (IX_OSAL_LOG_LVL_WARNING,        IX_OSAL_LOG_DEV_STDOUT,        "ixOsalThreadSuspend(): not implemented in linux \n",        0, 0, 0, 0, 0, 0);    return IX_SUCCESS;}PUBLIC IX_STATUSixOsalThreadResume (IxOsalThread * tId){    ixOsalLog (IX_OSAL_LOG_LVL_WARNING,        IX_OSAL_LOG_DEV_STDOUT,        "ixOsalThreadResume(): not implemented in linux \n",        0, 0, 0, 0, 0, 0);    return IX_SUCCESS;}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -