![]() |
Home | Libraries | Author | Links |
00001 /* ***** BEGIN LICENSE BLOCK ***** 00002 * Version: MPL 1.1/GPL 2.0/LGPL 2.1 00003 * 00004 * The contents of this file are subject to the Mozilla Public License Version 00005 * 1.1 (the "License"); you may not use this file except in compliance with 00006 * the License. You may obtain a copy of the License at 00007 * http://www.mozilla.org/MPL/ 00008 * 00009 * Software distributed under the License is distributed on an "AS IS" basis, 00010 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License 00011 * for the specific language governing rights and limitations under the 00012 * License. 00013 * 00014 * The Original Code is the SysToMath C Libraries package (LibStmC). 00015 * 00016 * The Initial Developer of the Original Code is 00017 * Tom Michaelis, SysToMath. 00018 * Portions created by the Initial Developer are Copyright (C) 2000-2006 00019 * the Initial Developer. All Rights Reserved. 00020 * 00021 * Contributor(s): 00022 * 00023 * Alternatively, the contents of this file may be used under the terms of 00024 * either the GNU General Public License Version 2 or later (the "GPL"), or 00025 * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), 00026 * in which case the provisions of the GPL or the LGPL are applicable instead 00027 * of those above. If you wish to allow use of your version of this file only 00028 * under the terms of either the GPL or the LGPL, and not to allow others to 00029 * use your version of this file under the terms of the MPL, indicate your 00030 * decision by deleting the provisions above and replace them with the notice 00031 * and other provisions required by the GPL or the LGPL. If you do not delete 00032 * the provisions above, a recipient may use your version of this file under 00033 * the terms of any one of the MPL, the GPL or the LGPL. 00034 * 00035 * ***** END LICENSE BLOCK ***** */ 00036 00037 /****************************************************************************** 00038 * First Release 2000-07-12 00039 ******************************************************************************/ 00040 00041 00081 #ifndef STM_UNIQUE_H 00082 #define STM_UNIQUE_H 00083 00084 00085 /* Include header files and macro definitions. */ 00086 #include <stm/internal/_unique.h> 00087 00088 00089 #ifdef __cplusplus 00090 extern "C" 00091 { 00092 #endif 00093 00094 00154 #define StmSystemUniqueItemDefine(ItemType, TimeoutMs) \ 00155 StmSystemUniqueItemImpl_ (ItemType, TimeoutMs) 00156 00157 00198 #define StmThreadSpecificItemDefine(ItemType) \ 00199 StmThreadSpecificItemImpl_ (ItemType) 00200 00201 00202 #ifdef STM_DOXYGEN 00203 00218 StmAbstractType (SampleStateType) /* SampleThreadSpecific */ 00219 00220 00221 00224 void SampleStateTypeDestroy (SampleStateType item); 00225 00226 00227 StmThreadSpecificItemDefine (SampleStateType) /* SampleThreadSpecific */ 00228 00229 00231 #endif /* STM_DOXYGEN */ 00232 00233 00237 #ifdef STM_ENABLE_INLINE 00238 #include <stm/internal/_unique.h> 00239 #endif 00240 00241 00242 #ifdef __cplusplus 00243 } 00244 #endif 00245 00246 00247 #endif
© Copyright Tom Michaelis 2002-2007
Distributed under the SysToMath Software License (See the accompanying file license.txt or a copy at www.SysToMath.com).