00001 /** ============================================================================ 00002 * @file linkcfgdefs_os.h 00003 * 00004 * @path $(DSPLINK)/gpp/inc/sys/Linux/ 00005 * 00006 * @brief Defines OS-specific constants and interfaces for configuration of 00007 * DSP/BIOS LINK. 00008 * 00009 * @ver 1.65.00.03 00010 * ============================================================================ 00011 * @copyright Copyright (C) 2002-2009, Texas Instruments Incorporated - 00012 * http://www.ti.com/ 00013 * 00014 * Redistribution and use in source and binary forms, with or without 00015 * modification, are permitted provided that the following conditions 00016 * are met: 00017 * 00018 * * Redistributions of source code must retain the above copyright 00019 * notice, this list of conditions and the following disclaimer. 00020 * 00021 * * Redistributions in binary form must reproduce the above copyright 00022 * notice, this list of conditions and the following disclaimer in the 00023 * documentation and/or other materials provided with the distribution. 00024 * 00025 * * Neither the name of Texas Instruments Incorporated nor the names of 00026 * its contributors may be used to endorse or promote products derived 00027 * from this software without specific prior written permission. 00028 * 00029 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 00030 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, 00031 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 00032 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR 00033 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, 00034 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, 00035 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; 00036 * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, 00037 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR 00038 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, 00039 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 00040 * ============================================================================ 00041 */ 00042 00043 00044 #if !defined (LINKCFGDEFS_OS_H) 00045 #define LINKCFGDEFS_OS_H 00046 00047 00048 /* ----------------------------------- DSP/BIOS LINK Headers */ 00049 #include <dsplink.h> 00050 00051 00052 #if defined (__cplusplus) 00053 EXTERN "C" { 00054 #endif /* defined (__cplusplus) */ 00055 00056 00057 /** ============================================================================ 00058 * @name LINKCFG_GppOs 00059 * 00060 * @brief This structure defines the configuration structure for the GPP OS 00061 * specific configuration. 00062 * 00063 * @param handleSignals 00064 * Indicates whether signals should be handled for cleanup on 00065 * abnormal process termination. 00066 * @param numSignals 00067 * Indicates the number of signals to be handled. 00068 * @param sigNumArray 00069 * Pointer to the array of signals to be handled. 00070 * ============================================================================ 00071 */ 00072 typedef struct LINKCFG_GppOs_tag { 00073 Bool handleSignals ; 00074 Uint32 numSignals ; 00075 Uint32 * sigNumArray ; 00076 } LINKCFG_GppOs ; 00077 00078 00079 #if defined (__cplusplus) 00080 } 00081 #endif /* defined (__cplusplus) */ 00082 00083 00084 #endif /* !defined (LINKCFGDEFS_OS_H) */